python函数
摘要:
#函数定义 def mylen(): """计算s1的长度""" s1 = "hello world" length = 0 for i in s1: length = length+1 print(length) #函数调用 mylen() ''' ''' def mymax(x,y): the_max = x if x > y... 阅读全文
posted @ 2018-06-04 17:49 afly666 阅读(304) 评论(0) 推荐(0) 编辑