摘要: def sum(*arg,base=3): s = 0 for i in arg: s += i s *= base return sprint(sum(4,5,6)) 阅读全文
posted @ 2018-12-11 20:23 王禹鑫 阅读(128) 评论(0) 推荐(0) 编辑