Just finished my first module and I scored a 90% on the test, all from memory and no studying necessary. I’ve got python3 installed on my machine and I am excited to get into the more advanced stuff. Here is a little example of running python from the command line. As always if you have any questions please let me know!
python3
user@localhost ~ % python3
Python 3.9.6 (default, Oct 18 2022, 12:41:40)
[Clang 14.0.0 (clang-1400.0.29.202)] on darwin
Type “help”, “copyright”, “credits” or “license” for more information.
>>> print(“Hello”)
Hello
>>>