请问如何使用python识别字符串里的最后一个数字是否为偶数
时间: 2024-06-04 15:12:32 浏览: 140
03_循环_python_
您可以使用正则表达式来识别字符串中的最后一个数字,然后判断是否为偶数。以下是一个示例代码:
import re
string = "This is a string with 123456 in it, and the last number is 8."
match = re.search(r'\d+', string[::-1])
last_number = int(match.group()[::-1])
if last_number % 2 == 0:
print("The last number is even.")
else:
print("The last number is odd.")
阅读全文