Python 中的 print() 函数 是一个内置函数,用于显示指定内容,例如 变量、字符串 或 数字,在输出屏幕上。它输出传递给函数的参数值,默认情况下用空格分隔。 参数值 参数 描述 对象 要打印的任何对象。非关键字参数转换为 字符串 并写入标准输出文件。 sep 对象 由 sep 分隔。默认值为 ' ' end 附加在最后一个值之后的字符串,默认值为换行符。 file file 必须是一个具有 write(string) 方法的对象;如果不存在或为 None,则将使用 sys.stdout。 flush 是否强制刷新流。 返回值 Python 中的 print() 函数 不返回任何值;它返回 None。 如何在 Python 中使用 print() 示例 1 Python 中的 print() 函数 用于在输出控制台中显示指定的消息或变量值。 print('Hello, world!') 示例 2 你可以使用 print() 函数将 字符串 与其他 数据类型(如 整数 或浮点数)连接起来。 name = 'Alice' age = 30 print('My name is', name, 'and I am', age, 'years old') 示例 3 print() 函数具有 end 和 sep 等参数,用于自定义输出格式。 print('apple', 'orange', 'banana', sep=', ', end='.') 内置函数 abs() aiter() all() anext() any() ascii() bin() bool() breakpoint() bytearray() bytes() callable() chr() classmethod() compile() complex() delattr() dict() dir() divmod() enumerate() eval() exec() filter() float() format() frozenset() getattr() globals() hasattr() hash() help() hex() id() input() int() isinstance() issubclass() iter() len() list() locals() map() max() memoryview() min() next() object() oct() open() ord() pow() property() range() repr() reversed() round() set() setattr() slice() sorted() staticmethod() str() sum() super() tuple() type() vars() zip()