fork download
  1. def get_upper_list(orginal_list):
  2. '''Return a new list of strs that contains the strs from the original list
  3. converted to uppercase'''
  4. original_list = ''
  5. new_strs = get_upper_list(original_list)
  6. return new_strs
  7.  
  8. get_upper_list(["abcd"])
Runtime error #stdin #stdout 0.04s 7588KB
stdin
Standard input is empty
stdout
Standard output is empty