Print Statement
print()
sep join the middle
end suffix
print('hello,shanghai')print('Hello','Shanghai')print('hello','shanghai',sep='&&',end='!\n')# sep connects the middle# end suffixprint('goodbye,shanghai',end='!\n')
Console print data
hello,shanghaihello shanghaihello&&shanghai!goodbye, shanghai!