使用print()函数可以将数据打印到终端。
print()函数可以直接在终端执行,也可以写在Python文件中,通过运行文件来执行。例如在终端使用:
MicroPythonIDE-UpyCraft-1.2.1_7.png (139.89 KB, 下载次数: 6)
2019-2-14 17:13 上传
在文件中使用:
MicroPythonIDE-UpyCraft-1.2.1_8.png (170.81 KB, 下载次数: 3)
2019-2-14 17:14 上传
注意:
当我们在uPyCraft交互环境下编写代码时,>>>是MicroPython解释器的提示符,不是代码的一部分。前面没有>>>或...的"Hello World!”为程序运行的结果。
print()函数中可以有多个字符串,用逗号",”隔开。
示例:>>>print("hello", "world!")
hello world!
print 默认输出换行,如果在末尾加上end=" "则不换行。
示例:print("hello", end=" ")print("world")
运行结果&#