Commit dbbe4a1b by BellCodeEditor

save project

parent 60595fe9
Showing with 11 additions and 0 deletions
x = 1
for i in range(0,10):
x = (x+1)*2
print(x)
\ No newline at end of file
def sum_numbers(num):
if num == 1:
return 1
a = sum_numbers(num-1)+num
return a
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment