Python-substr

发布于 2024-08-01 21:09:22 字数 151 浏览 4 评论 0原文

我需要能够获取数字的最后一位数字。

即,我需要从 12 返回 2。

在 PHP 中就像这样: $minute = substr(date('i'), -1) 但我在 Python 中需要这个。

有任何想法吗

I need to be able to get the last digit of a number.

i.e., I need 2 to be returned from: 12.

Like this in PHP: $minute = substr(date('i'), -1) but I need this in Python.

Any ideas

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

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

发布评论

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

评论(3

甜味超标? 2024-08-08 21:09:23
last_digit = str(number)[-1]
last_digit = str(number)[-1]
捂风挽笑 2024-08-08 21:09:23

使用 % 运算符:

   x = 12 % 10 # returns 2
   y = 25 % 10 # returns 5
   z = abs(-25) % 10 # returns 5

Use the % operator:

   x = 12 % 10 # returns 2
   y = 25 % 10 # returns 5
   z = abs(-25) % 10 # returns 5
独自←快乐 2024-08-08 21:09:23

Python 区分字符串和数字(​​实际上也区分不同类型的数字,即 int 与 float),因此最佳解决方案取决于您从什么类型开始(str 或 int?)以及您想要的结果类型(同上) 。

Int 转 int:abs(x) % 10

Int 转 str:str(x)[-1]

Str 转 int:int(x[-1] )

字符串到字符串:x[-1]

Python distinguishes between strings and numbers (and actually also between numbers of different kinds, i.e., int vs float) so the best solution depends on what type you start with (str or int?) and what type you want as a result (ditto).

Int to int: abs(x) % 10

Int to str: str(x)[-1]

Str to int: int(x[-1])

Str to str: x[-1]

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