输出函数print
# 输出数字
print(24)
# 输出字符
print('helloworld')
# 输出表达式
print(4 + 3)
# 不换行输出
print('hello', 'world', 'python')
# 输出到文件,‘a+’=没有文件会自动创建,追加方式写入,需要写file=fp不能直接写fp
fp = open('test.txt', 'a+')
print('helloworld', file=fp)
fp.close()
print()打印默认是换行的,为print()第二个参数指定为空字符串,可以阻断换行。
输入函数input
# 通过键盘输入的都是str类型
a = int(input('输入第一个数:'))
b = int(input('输入第二个数:'))
print(str(a) + '+' + str(b)+ '=',a+b)
>>
输入第一个数:5
输入第二个数:3
5+3= 8