我正在尝试创建一个程序,其中用户输入包含两个“!”的语句 围绕着一根绳子。(例如:大家好!这是一个测试!再见。)我要抓住两个感叹号内的字符串,然后逐个字母地反向打印它。 我已经能够找到包含该语句的起点和终点,但是我在创建一个索引来userstring反向循环并打印我的变量时遇到困难。
test = input('Enter a string with two "!" surrounding portion of the string:')
expoint = test.find('!')
#print (expoint)
twoexpoint = test.find('!', expoint+1)
#print (twoexpoint)
userstring = test[expoint+1 : twoexpoint]
#print(userstring)
number = 0
while number < len(userstring) :
letter = [twoexpoint - 1]
print (letter)
number += 1
四季花海
智慧大石
桃花长相依
相关分类