Python-programming-exercises icon indicating copy to clipboard operation
Python-programming-exercises copied to clipboard

100+ Python challenging programming exercises

Results 114 Python-programming-exercises issues
Sort by recently updated
recently updated
newest added

Is the solution for question 5 correct? I found it couldn't produce the expected output, did I miss anything?

Alternative solutions are added as each py file. Also q7 has wrong approach, fixed.

For this application first we have to identify the data that needs to be saved and accessed, with that we will churn out entities that will take form of classes...

My way of programming in Python 3x

class Capital: def _init_(self): self.s='' def line(self,a): self.s=a def printstr(self): print(self.s.upper()) obj=Capital() obj.line('''Hello World! Let's party!''') obj.printstr() I have tried doing it using class keyword in python 3.7. Hope it's...

I am learning python and will continue to work on your excercises. In the meantime I will update your solutions to match the python3 syntax