Python3 print的函数原型:
print(*objects, sep=‘ ’, end=‘\n’, file=sys.stdout, flush=False)
- objects ---- 输出的对象,
- sep ---- 分隔对象,默认为空格
- end ---- 输出结尾参数,默认为\n
- file ---- 定义流输出的文件,默认为sys.stdout
- flush ---- 是否立即把内容输出到流文件,不作缓存,默认为False
把end设置为空字符串即不会输出回车符。
参考:
https://www.cnblogs.com/Dake-T/p/7376779.html
原文地址:https://www.cnblogs.com/myjyixi/p/9153005.html
时间: 2024-10-05 03:09:27