输出
print("hello world")
也可以传入多个参数
print("hello","world")
输出结果:
hello world
python2时代不需要()
输入
a = input('input s: ')
print(a)
运行效果:
input s: 1
1
注意:input取得的结果永远是字符串类型的
print("hello world")
也可以传入多个参数
print("hello","world")
输出结果:
hello world
python2时代不需要()
a = input('input s: ')
print(a)
运行效果:
input s: 1
1
注意:input取得的结果永远是字符串类型的