python中如何知道变量是否不包含数字?
所以我知道如何检查变量是否包含数字。就像:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请检查文档,例如 https://www.w3schools.com/python/python_ref_string.asp< /a>
不是variable.isdigit()
Please check the documentation, e.g. https://www.w3schools.com/python/python_ref_string.asp
not variable.isdigit()
要了解变量的类型,最简单的方法是使用
type
:如果您需要布尔测试,您还有许多其他
var.is*
选项:The easiest to find out about the type of the variable is to use
type
:If you need boolean tests, you have a bunch of other
var.is*
options: