Example of Single-line comment in Python
# This is a single line comment example
print("Hello World")
#This line won't be printed
Python Inline comments
print("Hello World") # This is a example of inline comment
# Comment on a single line
user = "JDoe" # Comment after code
# This is a Python single-line comment and it will be ignored
# Comment on a single line
name = "Pied Piper" # Comment after code