studying Python as crazy and have many many questions.
This time about function, i need to create 2 functions, first for numbers to sum up everything that user inputs in
For your first function, that already exists as a built-in function of same name (sum()). For the second, you can use a simple list comprehension.
sum()
def rever(strings): return [x[::-1] for x in strings]