Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/skdonthi/python
learn python - refresh
https://github.com/skdonthi/python
Last synced: about 2 months ago
JSON representation
learn python - refresh
- Host: GitHub
- URL: https://github.com/skdonthi/python
- Owner: skdonthi
- Created: 2023-09-08T09:57:39.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-09-08T10:17:52.000Z (over 1 year ago)
- Last Synced: 2023-09-08T11:28:20.560Z (over 1 year ago)
- Language: Python
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Python
Learn python - refresh1. Hello, World! - first program
2. Variables and Types: Python is completely object oriented, and not "statically typed". You do not need to declare variables before using them, or declare their type. Every variable in Python is an object.
3. Lists: Lists are very similar to arrays. They can contain any type of variable, and they can contain as many variables as you wish. Lists can also be iterated over in a very simple manner.
4. Arithmetic Operators: Just as any other programming languages, the addition, subtraction, multiplication, and division operators can be used with numbers.