# 字符串分割
str = "I am symo"
# lst = str.split()
# a,b,c = lst  # 解构
a,b,c = str.split()
print(a,b,c , sep='\n')


0 条评论

目前还没有评论...