Commit a06e8ff1 by BellCodeEditor

save project

parent 9fe09343
Showing with 10 additions and 4 deletions
...@@ -11,13 +11,13 @@ def a(): ...@@ -11,13 +11,13 @@ def a():
except: except:
print("s") print("s")
return b return b
a1=a() # a1=a()
print(a1) # print(a1)
def z(m): def z(m):
n=0 n=0
for i in m: for i in m:
n+=i n+=i
return n return n
h=z(a1) # h=z(a1)
print(h) # print(h)
import o
k=o.a()
l=o.z(k)
print(k)
print(l)
\ No newline at end of file
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