课程
/后端开发
/Python
/初识Python
if prefix == 'start': args += attrs, else: args = name,
这样的赋值是怎样的,为什么值后面还要加个逗号
2015-03-30
源自:初识Python
正在回答
prefix = 'start'
args = ('',)
attrs = ''
if prefix == 'start':
args += attrs,
else:
args = name
print prefix,args,attrs
有逗号 说明是元组 请注意 否则会报错的 及得好评哦 亲
举报
学python入门视频教程,让你快速入门并能编写简单的Python程序