Commit 4f52449b by BellCodeEditor

save project

parent fe6af581
def a(): def a():
total = [] total = []
while True: while True:
...@@ -13,4 +14,11 @@ def a(): ...@@ -13,4 +14,11 @@ def a():
total.append(unit) total.append(unit)
print(total) print(total)
return date return date
a()
def sum(list1):
count=0
for i in list1:
count+=i
return count
m=sum(a())
print(m)
import func
date=func.a()
d=func.sun(date)
\ 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