Python Commands Every Beginner Should Know
Welcome back! Python is an awesome programming language with a ton of capability, if you’re new to Python, check out the link below to learn more about it:
So, let’s talk about some of the most important Python commands every programmer should know! Now, this syntax is fairly basic, but even if you’ve used Python before, it doesn’t hurt to brush up on your Python experience, let's get started!
Prints
Starting off, one of the most important elements within Python are print statements, these commands allow you to print something to the console, what does that mean? Think about it like this, when you checkout at a store, you look at the cash register and you’re able to see the output of your total on a screen, that is an (weird) example of a print statement! So, how do you print something with Python? It’s easy, all you have to do is use the print() command, here are some examples:
print("Hello")
The output would be
> Hello