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

It says to the program should print a comma-separated sequence yet it also says (and as we all know with common sense) that output should just a single integer. So...

Added a different solution for q53 using find method and slicing.

Added a different solution for Q30

question no 6 had underscore but the multiplication sign would make the meaning more clearer.

a=input() c=sorted((set(a))) for i in c[::-1]: print("{} {}".format(i,a.count(i)))

question 88 use dict