Hello World
With Python, Mamba, and PyCharm setup we can now create a basic "Hello, World" program. In order to do this we can clear what's in our main.py
file.
Now that there is no code in the project, cliking the Run button doesn't actually generate any output. All PyCharm tells us is that the program executed without crashing, which is what we'd expect from a file with no code.
Now let's create our Hello World code. In order to do this, we will write a print()
statement. print()
is a command built into Python that is capable of sending output to our terminal.
Now that we've done that, we can hit run again. This time we get something more in the output.