Python is programming language that is used in a variety of things, from games, software applications and pages in a web browser.
Some examples of Python coding will be shown below:
<var_name> = <value> This is to make a variable and to assign that said variable.
print("hi") This is to show the word "hi" on your program.
>>> type(7)
<class 'int'> This one is used to make integers.
<string_variable>[start:stop] This is a string variable. This is used to add a part to your coding.
<string_variable>.<method_name>(<arguments>) This is called string method. They are used to help do common operations.
>>> type(True)
<class 'bool> This last one is called a boolean value. They are used to make something true or false.