Commit 5baeaef0 by BellCodeEditor

auto save

parent 9b4c96cf
Showing with 12 additions and 9 deletions
def func(): import func
z = 2+3
return z
r = func()
print(r)
\ No newline at end of file
...@@ -13,4 +13,14 @@ def func(): ...@@ -13,4 +13,14 @@ def func():
return total return total
r = func() r = func()
print(r)
\ No newline at end of file def sum(alist):
count = 0
for i in alist:
count = count + i
return count
n = sum(r)
print(n)
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