100-plus-python-coding-problems-with-solutions icon indicating copy to clipboard operation
100-plus-python-coding-problems-with-solutions copied to clipboard

A list of python problems for beginners and intermediate developers

Results 22 100-plus-python-coding-problems-with-solutions issues
Sort by recently updated
recently updated
newest added

https://github.com/ProgrammingHero1/100-plus-python-coding-problems-with-solutions/blob/master/Number-Related/User-input-to-Number.md # finding max among three numbers a, b, c = input("Enter three Number").split() if a > b: if a > c: print(a, "is Greatest") elif b < c: print(c,...

def get_winner(p1, p2): if p1 == p2: return "It's a tie!" elif p1 == 'rock': if p2 == 'scissors': return "First player wins!" else: return "Second Player wins!" elif p1...

Hi, I noticed the links under [**2 - Number Related**](https://github.com/ProgrammingHero1/100-plus-python-coding-problems-with-solutions#2---number-related) were broken, and I also noticed them being duplicated under [**3 - Loop Related**](https://github.com/ProgrammingHero1/100-plus-python-coding-problems-with-solutions#3---loop-related), not sure if this was deliberate...

Fixed linking between README and the source code.

The result being returned for the program is incorrect for few inputs as same number is duplicated. Example : For input 100, result shows [2, 2, 5, 5] For input...

The linking of files isn't working properly between the source codes/files and the README. Such as, the linking isn't working in the "2 - Number Related statement". There might be...