Commit 8992cd16 by BellCodeEditor

save project

parent 05e7d622
Showing with 17 additions and 0 deletions
import b
print(b.Away(1,10,2))
print(b.n2('张三'))
print(b.n3())
\ No newline at end of file
def Away(m1,m2,m3):
sum=0
for i in range(m1,m2,m3):
sum +=i
print(sum)
def n2(name):
print('你好:',name)
def n3():
print('这是个没有参数的函数!')
\ 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