print
通过 print 输出字符、数字、bool值。
在线运行演示代码
参考教程
print("hello") print('world') print(1) print(3.14) print(3e30) print(1 + 2 * 3) print(2 > 5)