赞
踩
一、输入
a=input()
b=input()
a,b=map(int,input().split())
#此为规定a,b为int类型
a,b=map(str,input().split())
#此为str类型,其他类型类似,但map函数必须有两个参数
a=input()
#将输入的字符串存为a
b,c=a.split(',')
#之后以某种方式分开
二、输出
print('***')
print('无缝',end='')
#end=''中的单引号可以填入空格,逗号等
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。