break-the-ice-with-python
                                
                                
                                
                                    break-the-ice-with-python copied to clipboard
                            
                            
                            
                        The repository is about 100+ python programming exercise problem discussed, explained, and solved in different ways
Problem: As a Python user, I find that many of the examples and tutorials available online focus on specialized use cases or theoretical concepts rather than practical day-to-day applications. Solution:...
Add alternative solution for Day 2 Question 8
Added a new solution
Added my Solution using generators for Question 1
Question 96: def splitter(word, width): while len(word) > 0: snippet = "" if len(word) < width: width = len(word) for i in range(width): snippet += word[i] print(snippet) word = word[width:]...
in this program every second string is being saved and every odd string is skipped. Solution: change while input(): to while True: and it will be solved like below: #...
First, of all, I would like to thank you for creating this valuable resource and others for contributing. Concerning Question 9, neither of the provided solutions produces the output specified...
`for i in range(n+1): a=1 a=a*(i+1) ` With the above method, factorial can be calculated. With this method, it is easier to understand the algorithm
Just a one line solution to get the brain working.