For example, I'm writing a code
def soma():
n1=int(input('digite um numero'))
n2=int(input('digite outro'))
soma = n1+n2
print('A soma de {} e {} é {}'.format(n1,n2,soma))
#começo do programa
p=input('Você deseja somar?')
if p=='sim':
print(soma())
print('Deseja subtrair')
.....
If I want to terminate my code in the sum function, is there any way I can not make the program execute the other lines?