有没有办法让python检查/打印字符串中的最后一个单词/数字?
这是我到目前为止所得到的一个例子:
x = input("Input what you want to do to your number and your number: ")
if word.startswith("Pi"):
Pi_A = x * Pi # I need x to look at the number
print (Pi_A)
我只需要查看最后一个单词/数字,就可以求和。
编辑(输入/输出):
输入:(“Pi 2”是用户输入的内容)
输入你想对你的号码和你的号码做什么:Pi 2
输出:(回答 π * 2)
6.2...