Python Version, Comment, and Python Test Print are elementary codings. But this is the first programming try when we are newly joined in Python. Most of the coders are very afraid to input their first code. But here we learn Python step by step effortlessly.
Python First Command
#Here we use print Function and single quote.
#If you want to use the double quote,
#it will be possible to use it also.
print(“Be yourself; everyone else is already taken”)
#But Here we use a single quote inside the double quote. Python allows it.Â
print(“What’s up”)
Python Single Line Comments
print(“Cheers, Mate!”)
#print(“Hello, World!”)
Python Multiline Line Comments
“””
This is a comment
written in
more than just one line
“””
print(“Hello, World!”)
You copy this Code and paste it into Your Python Editor, which you like.