Commit 641d889a by BellCodeEditor

save project

parent 528aa8bc
Showing with 13 additions and 7 deletions
......@@ -15,9 +15,15 @@
# result = add()
# print(result)
def add(x,y):
z = x * y
return z
print(add)
a = add(55,55)
print(a)
\ No newline at end of file
# def add(x,y):
# z = x * y
# return z
# print(add)
# a = add(55,55)
# print(a)
prince=[15,18,14,25]
count=0
for i in prince:
count = count+i
print(count)
\ 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