break-the-ice-with-python icon indicating copy to clipboard operation
break-the-ice-with-python copied to clipboard

The repository is about 100+ python programming exercise problem discussed, explained, and solved in different ways

Results 95 break-the-ice-with-python issues
Sort by recently updated
recently updated
newest added

c = 50 h = 30 d = (100, 150, 180) d = [int(i) for i in d.split(',')] z =[] for i in od: x = 2*c*d[i] y = x/h...

Here I have provided an easy solution for problem no. 39 , please take a look

`import re` `lst = input().split(',')` `for thing in lst:` ` if re.search('[a-zA-Z0-9][/#/&/@]', thing) and len(thing) >= 6 and len(thing)

import math number = input("Enter a number: ") factorial = math.factorial(int(number)) print(factorial)

Hi, My name is Seyi, thank you for this git repo. It has really assisted me. Hope you can publish my solutions too. Regards

1.Notebook 07, Question 21: if s[0] == "UP": x -= int(s[1]) -> y+= if s[0] == "DOWN": x += int(s[1]) -> y-= if s[0] == "LEFT": y -= int(s[1]) ->...