79216293

Date: 2024-11-22 19:10:38
Score: 2
Natty:
Report link

def no_shouting(my_list): my_list2 = [] for word in my_list: if word.isupper() == True: pass else: my_list2.append(word) return my_list2

if name == "main": my_list = ["ABC", "def", "UPPER", "ANOTHERUPPER", "lower", "another lower", "Capitalized"] pruned_list = no_shouting(my_list) print(pruned_list)

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Jhonatan Simarron