Python-substr
我需要能够获取数字的最后一位数字。
即,我需要从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用 % 运算符:
Use the % operator:
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]