Code: Select all
print('This is printed in Python within single quotes.')
# This is a comment. It's not displayed. It only makes a one-line comment.
print("This is printed in Python within double quotes.")
Code: Select all
print('This is printed in Python within single quotes.')
# This is a comment. It's not displayed. It only makes a one-line comment.
print("This is printed in Python within double quotes.")