這篇文章主要介紹了關於實現python print 按逗號或空格分隔的方法,有著一定的參考價值,現在分享給大家,有需要的朋友可以參考一下
1)按,分隔##
a, b = 0, 1 while b < 1000: print(b, end=',') a, b = b, a+b 1,1,2,3,5,8,13,21,34,55,89,144,233,377,610,987,
2 )以空格分隔
a, b = 0, 1 while b < 1000: print(b, end=' ') a, b = b, a+b 1 1 2 3 5 8 13 21 34 55 89 144 233 377 610 987
3)print的用法
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 values, default a space. end: string appended after the last value, default a newline. flush: whether to forcibly flush the stream.
Python教程》
以上是python print 以逗號或空格分隔的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!