标签:hello lex 变量 name data 赋值 第一个 pytho print
#给多个变量赋值
data=[‘alex‘,84,[1900,3,38]]
name,age,birth=data
print(name)
print(age)
print(birth)
#
msg=‘hello‘
a,b,c,d,e=msg
print(a,b,c,d,e)
msg=‘hello‘
a,_,_,_,b=msg
print(a)
print(b)
#只给第一个和最后一个变量赋值
a,*_,b=msg
print(a,b)
标签:hello lex 变量 name data 赋值 第一个 pytho print
原文地址:http://www.cnblogs.com/liuxiaowei/p/7163712.html