Posts by Berserker • 33 points
3 posts
-
0
votes1
answer341
viewsQ: What does this error mean and how to fix it: Eoferror: EOF when Reading a line?
The code I was testing worked perfectly in the visual studio, however, by submitting on one of these sites similar to the URI, that error appeared. I know it is a line reading error, but I could not…
-
1
votes2
answers1486
viewsQ: How to remove square brackets and commas when printing a list in Python?
How to remove brackets and commas from output when printing a list in Python? For example, I need the result of the code I did to look like this: 3 8 0 6 7 with numbers separated by space and just…
-
1
votes3
answers464
viewsQ: Identify amount of upper and lower case letters in a string
I need to check if a word has more upper case letters and replace the whole word for lower case only, also check if it has more lower case letters and replace the whole word for upper case. For…