print()函数
python中最常用的函数便是print(),这个函数很好用。
def print(self, *args, sep=' ', end='/n', file=None): # known special case of print
"""
print(value, ..., sep=' ', end='/n', file=sys.stdout, flush=False)
Prints the values to a stream, or to sys.stdout by default.
Optional keyword arguments:
file: a file-like object (stream); defaults to the current sys.stdout.
sep: string inserted between valu
print()函数最先出现在Python成神之路。
共有 0 条评论