Commit 641d889a by BellCodeEditor

save project

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