A collection of Python practice scripts covering fundamental programming concepts.
- Conditionals: if-else statements, match-case
- Loops: for loops, while loops
- Strings: string operations and methods
- Type Handling: type detection and conversion
- Basic I/O: input/output operations
- Time: working with time modules
| File | Topic |
|---|---|
| `hello.py` | Basic print and string formatting |
| `if-else-day13.py` | Conditional statements |
| `Match_case.py` | Python match-case structure |
| `for_loop.py` | For loop examples |
| `while_loop.py` / `whileloop.py` | While loop examples |
| `string.py` / `srringday12.py` / `stringdy13.py` | String manipulation |
| `type_find.py` | Type detection with type() |
| `exercise1.py` | Practice exercise |
| `time.py` | Time-related operations |
| `goodmorningsir.py` | Interactive greeting script |
| `test.py` / `test1.py` | Test scripts |
```bash python3 hello.py ```
MIT