1、#变量
a=2
print(a)#输出变量
2、#多倍输出 字符串和整数之间
b=20*'abc'
print(b)
3、#字符串拼接 :字符串+字符串
g='just'+'do'+'it'
print(g)
c='just'+'do'+'it'
print(c)
4、#变量的输入
a=input('你今年多大啦')
print(a)
d=input('请输入你的名字')
print(d)
5、#数据类型转换
e='10'
e=int(e)
print(e)
e=float(e)
print(e)
a1=30
a2=10
res=a1+a2
print('请输入他们的和:'+str(res)#双引号里面是字符串、所以res要转换成字符串。