https://github.com/maxshalom/learning-python
Code examples and notes from the Python course on learnpython.org with repl.it online IDE.
https://github.com/maxshalom/learning-python
learn-to-code learning-python python
Last synced: 9 months ago
JSON representation
Code examples and notes from the Python course on learnpython.org with repl.it online IDE.
- Host: GitHub
- URL: https://github.com/maxshalom/learning-python
- Owner: MaxShalom
- License: mit
- Created: 2017-12-11T16:31:08.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2020-01-30T01:39:05.000Z (about 6 years ago)
- Last Synced: 2025-03-18T06:14:23.431Z (about 1 year ago)
- Topics: learn-to-code, learning-python, python
- Language: Python
- Homepage: https://learnpython.org
- Size: 2.4 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Learning Python
Code examples and notes from the learning python course on [learnpython.org](www.learnpython.org) using [repl.it](https://repl.it) online IDE. I will be adding new lessons and links as I go along with the course.
### Basic Python
1. [Hello World!](https://github.com/MaxShalom/learning-python/blob/master/Basics/1-hello-word.py) - Basic printing concepts to print "Hello World!"
2. [Variables and Types](https://github.com/MaxShalom/learning-python/blob/master/Basics/2-variables-and-types.py) - Variables, data types, and how to use them.
3. [Lists](https://github.com/MaxShalom/learning-python/blob/master/Basics/3-lists.py) - How to make, define, and call back lists.
4. [Basic Operators](https://github.com/MaxShalom/learning-python/blob/master/Basics/4-basic-operators.py) - Math in Python and multiplying variables and data types.
5. [String Formatting](https://github.com/MaxShalom/learning-python/blob/master/Basics/5-string-formatting.py) - Calling back strings and other data to be put in output.
6. [Basic String Operations](https://github.com/MaxShalom/learning-python/blob/master/Basics/6-basic-string-operations.py) - Interacting with strings including, case of letters and splicing.
7. [Conditions](https://github.com/MaxShalom/learning-python/blob/master/Basics/7-conditions.py) - How to use boolean and operator conditions with variables.
8. [Loops](https://github.com/MaxShalom/learning-python/blob/master/Basics/8-loops.py) - "for" and "while" loops in Python to set conditions or a set number of times for your code to run.
9. [Functions](https://github.com/MaxShalom/learning-python/blob/master/Basics/9-functions.py) - Making and calling functions to use in your code.
Hope this helps someone.