How does Python output Hello world!

How does Python output Hello world!

Output Hello world! The prompt of the Python interpreter is: >>>

print("Hello world!")

Insert picture description here
How to quickly output multiple Hello world!

print('Hello world!'*5)

Insert picture description here

Guess you like

Origin blog.csdn.net/qq_42073385/article/details/101380529