Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个类似 的字符串'H897b Site',我想测试该字符串以确保它只包含字母和数字而没有特殊字符。
'H897b Site'
所以在这样的情况下'H897b Sit$e','H8(&b Site'我希望能够标记它。
'H897b Sit$e'
'H8(&b Site'
我想要完成的是遍历表中的列并检查数据输入人员的输入错误。
您可以遍历字符串并进行检查,例如
if 'z' >= c >= 'a'
对于数字等也是如此。
print all(part.isalnum() for part in my_string.split())