https://github.com/fahimfba/python-problems
This repository contains many problems along with their solutions. All have been dealt with Python. I use this for a YouTube playlist of my channel.
https://github.com/fahimfba/python-problems
Last synced: 4 months ago
JSON representation
This repository contains many problems along with their solutions. All have been dealt with Python. I use this for a YouTube playlist of my channel.
- Host: GitHub
- URL: https://github.com/fahimfba/python-problems
- Owner: FahimFBA
- License: mit
- Created: 2021-04-11T19:59:05.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2022-02-12T21:06:32.000Z (almost 4 years ago)
- Last Synced: 2025-03-30T01:37:49.351Z (10 months ago)
- Language: Python
- Homepage: https://cutt.ly/4vrr9B0
- Size: 16.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# python-problems
| Question ID | Question | Solution (YouTube) | Source Code |
|:-------------:|:----------:|:--------------------:|:-------------:|
| 01 | Take value from the user, assigns it in a variable for Kilometers and convert it to Miles. Later, simply print that out! | [Explanation](https://www.youtube.com/watch?v=6h6bs6NEYAk&list=PLutHME8vSEnEbU31rqE91E589dbTm5x1T&index=2) | [Source Code](https://github.com/FahimFBA/python-problems/tree/main/Problem%201) |
| 02 | Take three int values from the user, and find the greatest among them. | [Explanation](https://www.youtube.com/watch?v=uwJJrZQhlDY&list=PLutHME8vSEnEbU31rqE91E589dbTm5x1T&index=5) | [Source Code](https://github.com/FahimFBA/python-problems/tree/main/Problem%202) |
| 03 | Find the factorial of a number using the recursive function | [Explanation](https://www.youtube.com/watch?v=AYLkdMfj2yc&list=PLutHME8vSEnEbU31rqE91E589dbTm5x1T&index=4) | [Source Code](https://github.com/FahimFBA/python-problems/blob/main/Problem%203/solve.py) |
| 04 | Find the greatest among 3 values | [Explanation](https://www.youtube.com/watch?v=uwJJrZQhlDY&list=PLutHME8vSEnEbU31rqE91E589dbTm5x1T&index=5) | [Source Code](https://github.com/FahimFBA/python-problems/blob/main/Problem%204/solve.py) |
| 05 | Get Calendar of Any Month and Any Year using only 4 Lines Python script!| [Explanation](https://www.youtube.com/watch?v=mBUqU1JpyHg&list=PLutHME8vSEnEbU31rqE91E589dbTm5x1T&index=6) | [Source Code](https://github.com/FahimFBA/python-problems/blob/main/Problem%205/solve.py)|
| 06 | Identify whether a character is alphabet or not using Python | [Explanation](https://www.youtube.com/watch?v=PUS4sNxwnMY&list=PLutHME8vSEnEbU31rqE91E589dbTm5x1T&index=7) | [Source Code](https://github.com/FahimFBA/python-problems/blob/main/Problem%206/solve.py) |
| 07 | Find the area of a triangle | [Explanation](https://youtu.be/Cl2SBjjqcbo) | [Source Code](https://github.com/FahimFBA/python-problems/blob/main/Problem%207/solve.py) |