我试图将DAY()函数的数据类型()函数更改为整数,但会赢得工作

发布于 2025-02-10 04:55:52 字数 1398 浏览 1 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

怎会甘心 2025-02-17 04:55:52

当问题可以用简单运算符解决时,您必须避免使用递归,如下所示:

minute_input = int(input("minutes: "))

minute = minute_input % 60
hour = minute_input / 60

def day(hour):
  return hour / 24

print(day(hour), hour)

输出:

minutes: 60
0.041666666666666664 1.0

,如果您想将天数作为整数获取,则可以将最后的打印指令更改为:

print(int(day(hour)), hour)

You must avoid using recursion when the problem can be solved with simple operators as follows:

minute_input = int(input("minutes: "))

minute = minute_input % 60
hour = minute_input / 60

def day(hour):
  return hour / 24

print(day(hour), hour)

Output:

minutes: 60
0.041666666666666664 1.0

Also, if you want to get the days value as an integer, you can change the last print instruction to:

print(int(day(hour)), hour)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文