📜  在同一行python代码示例中打印for循环

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

代码示例3
# Python 2 only
print "Seven"
# Backwards compatible (also fastest)
import sys
sys.stdout.write("Nice film")
# Python 3 only
print("Mob Psycho 100", end="")