These are some basics of the Python Language
Print using the simple print command:
print("Hello World!")Comments
Comments add notes to the source file that are ignored by the compiler.
Comments should be used as a task list, notes for code, and disabling code.
Single-line Comments
# Print message
print("Look Comments!")
print("Comments are not read.") # Print infoMulti-line Comments
"""
This is a long comment.
It takes several lines,
but it explains the code well.
"""
print("Multi-line Comments are useful.")