What is Python
What is Python
Python is a popular programming language. It was created by Guido van Rossum, and released
in 1991.
It is used for:
print("Hello, World!")
Python Indentation
Indentation refers to the spaces at the beginning of a code line.
Where in other programming languages the indentation in code is for readability only, the
indentation in Python is very important.
Python Comments
Creating a Comment
Comments starts with a #, and Python will ignore them:
Multiline Comments
Python does not really have a syntax for multiline comments.
Variables
Variables are containers for storing data values.
Creating Variables
Python has no command for declaring a variable.
x=5
y = "John"
print(x)
print(y)