(This is a template repo for everyone doing PSK-00. Feel free to edit it!)
Simple is better than complex.
A lot of Python developers know this line. It's from the Zen of Python. More on that later. Python as a language is among the best to start coding with. Why? I think it's the simple to get up to speed with and is versatile (it can be used in many fields)
You have two options:
- Get to this assignment on Repl.it to continue.
-
Install Python. Refer to this gist depending on your OS.
-
Install and run VSCode from [here](https://code.visualstudio.com/). You can use an editor of choice.
VSCode is a popular editor.
More on Python in VSCode here.
Install Python extension on VSCode (optional)
-
Clone this repo or copy the contents of main.py into a local main.py. Being able to clone repos and commit changes from the terminal will be an expected knowledge over time 💪
Read through this wiki for foundational knowledge.
Submit code that outputs the following:
Hello World
My name is Stan.
I am 20+ years of age. Young, right? 😃
The maximum number in this list: [12, 4, 56, 17, 8, 99] is 99.
The mean: [12, 4, 56, 17, 8, 99] is 32.666666666666664
A for Apple
B for Boy
C for Cow
...
Z for Zebra
With extensive research and reading, try to output this with elegant code. Elegant code here means code that is using descriptive variable names an the language's types and functions. Go beyond just using strings.
See you next week!
- You'll be required to update
main.py
with your code from the code editor on repl.it or your local code editor.