PythonBasics

Varibles
A variable is created the moment you first assign a value to it.
Example:
x = 5
y = "John"

Strings
Strings in python are surrounded by either single quotation marks(''), or double quotation marks("").
These two are the same even though surrounded by different quotation marks. 'hello' is the same as "hello".
You can display a string literal with the print() function:
Example:
print("Hello")
print('Hello')

Comments
Creating a Comment
Comments starts with a #, Python will ignore them:
Example:
#This is a comment
print("Hello, World!")

Contact Us
Sources:
Pngtree.com Trinket.io