码迷,mamicode.com
首页 > 其他好文 > 详细

编写函数,第一个参数指定今天是星期几(1 ~ 7),第二个参数指定天数n,返回n天后是星期几

时间:2018-07-05 23:31:56      阅读:383      评论:0      收藏:0      [点我收藏+]

标签: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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!