时间:2021-07-01 10:21:17 帮助过:974人阅读
- $ python3.7
- Python 3.7 (default, Sep 16 2015, 09:25:04)
- [GCC 4.8.2] on linuxType "help", "copyright", "credits" or "license" for more information.
- >>>
相关推荐:《Python视频教程》
多行指令需要在连续的多行中输入。比如,以 if 为例:
- >>> the_world_is_flat = True
- >>> if the_world_is_flat:
- ... print("Be careful not to fall off!")
- ...
- Be careful not to fall off!
以上就是python解释器的提示符是什么的详细内容,更多请关注Gxl网其它相关文章!