3 lines
78 B
Python
3 lines
78 B
Python
def returnElementOrList(list):
|
|
return list[0] if len(list) == 1 else list
|
def returnElementOrList(list):
|
|
return list[0] if len(list) == 1 else list
|