普通版降重
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
240 B

def has_numbers(input_string):
return any(char.isdigit() for char in input_string)
# 示例用法
input_str = "Hello, 123!"
if has_numbers(input_str):
print("字符串中包含数字")
else:
print("字符串中不包含数字")