python Tutorial
————————
Python is the easiest programming language and many programmers use Python but Python has downsides to it is slow so it is not the best programming language but for beginners is a good choose.
————————
Print(“hello”)
>>> hello
This code prints the text inside print(“ ”)
You can type in print any thing
————————
Print(“*****”)
Print(“****”)
Print(“***”)
Print(“**”)
Print(“*”)
>>> *****
>>> ****
>>> ***
>>> **
>>> *
In this code it is the same which the other but there is multiple print’s but still the code is simple
————————
Input(“type some thing”)
Print(“oh”)
>>> type some thing
Your input: hello
>>> ok
As we can see in this code we have something new and it is input that means the program wants to type some thing like when you type in code input and run you will need to type here to get to other line
And then prints what you added
————————