标签:turn 返回 def print span code col class 指定
1 def week(today, n): 2 s = n % 7 + today 3 return "n天后是星期:{}".format(s) 4 5 6 print(week(1, 3))
编写函数,第一个参数指定今天是星期几(1 ~ 7),第二个参数指定天数n,返回n天后是星期几
标签:turn 返回 def print span code col class 指定
原文地址:https://www.cnblogs.com/tttzqf/p/9270467.html