📜  python print no end of line - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:16.830000             🧑  作者: Mango

代码示例1
# print with no end of line
print("Hello world", end='')

# if there are some buffering issues, try :
print("Hello world", end='', flush=True)