标签:引号 img lov \n ring str 逗号 class NPU
输出函数用法
print(‘hello,world‘) #单引号和双引号都可以输出
print("hello,world")
print(‘I‘,‘Love‘,‘You‘) #中间的逗号会变成空格
print(‘\r\n‘) #会有一个换行
print(‘我爱中国‘)
print(‘100+200=‘,100+200) #会自动计算出结果
运行结果:
输入函数
name = input(‘please enter your name: ‘)
print(‘hello,‘, name)
标签:引号 img lov \n ring str 逗号 class NPU
原文地址:https://www.cnblogs.com/chulin/p/9019906.html