79389234

Date: 2025-01-26 20:22:37
Score: 1
Natty:
Report link
user_input = input()
short_names = user_input.split()
    
   
short_names = short_names[0:] #allows for input of all elements in dict
del short_names[0] #delete first element 
 
#change the last element to Joe
short_names[-1] = "Joe" 
    
print(short_names)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Aaron J. Washington