I did a lot of research over the weekend on Python. I learned a few commands and features in the language. One is called "print". print literally just prints something to the console(the console is just command prompt running your code). To use print you would write," print(" ")" and whatever is inside the parentheses and quotes would be printed to command prompt. Another feature is creating a variable. A variable is assigned something that you can bring up in your code later on.
~~~
print("hello")
variable = ("i made a variable")
print(variable)
~~~
the above example would first print "hello" to the console. then it would set the variable, variable to the value of "i made a variable". next it prints variable which is the same as "i made a variable".
The code would run this:
~~~
hello
i made a variable
>>>
~~~
SWAGPECE
~~~
SWAGPECE