An open API service indexing awesome lists of open source software.

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.

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) |