Ad
Code
Diff
  • def return_hundred(): return abs(-100)
        
    • def return_hundred(): return 100
    • def return_hundred(): return abs(-100)
Code
Diff
  • def why():
        lst = ['w', 'h', 'y']
        return ' - '.join(lst)
    • def why():
    • return 'w - h - y'
    • lst = ['w', 'h', 'y']
    • return ' - '.join(lst)