python中如何知道变量是否不包含数字?

发布于 2025-01-11 13:53:03 字数 107 浏览 0 评论 0原文

所以我知道如何检查变量是否包含数字。就像:

variable.isdigit

但如何知道它是否不包含数字并且其中包含字母或符号或...。

so I know how to check if a variable contains numbers. like :

variable.isdigit

but how to know if its not containing a number and it have letters or symbols or... in it.

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

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

发布评论

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

评论(2

空城旧梦 2025-01-18 13:53:03

请检查文档,例如 https://www.w3schools.com/python/python_ref_string.asp< /a>

  • .isdigit() 的相反: 不是variable.isdigit()

Please check the documentation, e.g. https://www.w3schools.com/python/python_ref_string.asp

  • the opposite of .isdigit(): not variable.isdigit()
无语# 2025-01-18 13:53:03

要了解变量的类型,最简单的方法是使用 type

>>> x=1.23
>>> y=3
>>> z='blah'
>>> print(type(x), type(y), type(z))
<class 'float'> <class 'int'> <class 'str'>

如果您需要布尔测试,您还有许多其他 var.is* 选项:

x.isalnum()       x.isdecimal()     x.islower()       x.isspace()
x.isalpha()       x.isdigit()       x.isnumeric()     x.istitle()
x.isascii()       x.isidentifier()  x.isprintable()   x.isupper()

The easiest to find out about the type of the variable is to use type:

>>> x=1.23
>>> y=3
>>> z='blah'
>>> print(type(x), type(y), type(z))
<class 'float'> <class 'int'> <class 'str'>

If you need boolean tests, you have a bunch of other var.is* options:

x.isalnum()       x.isdecimal()     x.islower()       x.isspace()
x.isalpha()       x.isdigit()       x.isnumeric()     x.istitle()
x.isascii()       x.isidentifier()  x.isprintable()   x.isupper()
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文