1. 首页
  2. 数据库
  3. 其它
  4. 对python的输出和输出格式详解

对python的输出和输出格式详解

上传者: 2021-02-23 23:15:21上传 PDF文件 76.07KB 热度 13次
输出 1. 普通的输出 # 打印提示 print('hello world') 用print()在括号中加上字符串,就可以向屏幕上输出指定的文字。比如输出’hello, world’,用代码实现如下: >>> print('hello, world') print()函数也可以接受多个字符串,用逗号“,”隔开,就可以连成一串输出: >>> print('The quick brown fox', 'jumps over', 'the lazy dog') The quick brown fox jumps over the lazy dog print()会依次打印每个字符串,遇到逗号“
用户评论