<var_name> = <value> - to create a variable and assign value to this variable
age = 56 and
print() function and write "Hello, World!" within parentheses- prints out what you want
print("Hello, World!")
type(), <class 'int'> - Integers are numbers without decimals. You can check if a number is an integer with the type() function. If the output is <class 'int'>, then the number is an integer.
>>> type(1)
<class 'int'>
<class 'float'> - Floats are numbers with decimals. You can detect them visually by locating the decimal point.
>>> type(4.5)
<class 'float'>
complex() -You can create complex numbers in Python with
>>> complex(4, 5)
(4+5j)
' ', '' '' is single or double quotes to define a string
"45678"