Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/exclud/alx-higher_level_programming
Higher Level Programming with Python.
https://github.com/exclud/alx-higher_level_programming
alx-higher-level-programming python python-script
Last synced: 3 days ago
JSON representation
Higher Level Programming with Python.
- Host: GitHub
- URL: https://github.com/exclud/alx-higher_level_programming
- Owner: exclud
- Created: 2023-06-05T16:44:47.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-03T16:57:30.000Z (11 months ago)
- Last Synced: 2024-01-03T17:47:54.927Z (11 months ago)
- Topics: alx-higher-level-programming, python, python-script
- Language: Python
- Homepage:
- Size: 6.64 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Higher Level Programming in Python
Python and its inner workings
## Deployment
It is a requirment to start every Python file with the '#!/usr/bin/python3' as the first line.
Here is the command to do so all at once. Make sure to be in the current working directory.```bash
for file in *; do echo '#!/usr/bin/python3' | cat - "$file" > temp && mv temp "$file"; done```
## Folders
These are the folders in the directory.
1. 0x00. Python- Hello World.
2. 0x01-python-if_else_loops_functions
3. 0x02. Python - import & modules
4. 0x03. Python - Data Structures: Lists, Tuples
5. 0x04. Python - More Data Structures: Set, Dictionary
6. 0x07. Python - Test-driven development
7. 0x08. Python - More Classes and Objects
8. 0x09. Python - Everything is object
9. 0x0A. Python - Inheritance
10. 0x0B. Python - Input/Output