Jul-04-2018, 08:29 PM
i am using pycharm the lastest version and inteprter python 2.7
Process finished with exit code 0
with nothing else and it did it to me with some others code like it doesnt have a problem or an error with the code i did but it didnt do what the code meant to do either
def sum_two_or_more(x1, x2, *args):
if args:
second = sum_two_or_more(x2, *args)
else:
second = x2
return x1 + second
sum_two_or_more(1, 2)i tried to run it and what printed out was:Process finished with exit code 0
with nothing else and it did it to me with some others code like it doesnt have a problem or an error with the code i did but it didnt do what the code meant to do either
