def func(t):
    return 2 + 3

t = 7
t = func(t)
print(t)

#https://pt.stackoverflow.com/q/226738/101