本題要求編寫程式,從給定字串中查詢某指定的字元。
輸入的第一行是乙個待查詢的字元。第二行是乙個以回車結束的非空字串(不超過80個字元)。
如果找到,在一行內按照格式「index = 下標」輸出該字元在字串中所對應的最大下標(下標從0開始);否則輸出"not found"。
mprogramming
index = 7
a1234
not found
char =
input()
string =
input()
flag =
0for i in
range
(len
(string)):
if string[i]
== char:
maxindex = i
flag =
1if flag ==0:
print
("not found"
)else
:print
("index = {}"
.format
(maxindex)
)
查詢指定字元
輸入格式 輸入的第一行是乙個待查詢的字元。第二行是乙個以回車結束的非空字串 不超過80個字元 輸出格式 如果找到,在一行內按照格式 index 下標 輸出該字元在字串中所對應的最大下標 下標從0開始 否則輸出 not found 輸入樣例1 mprogramming 輸出樣例1 index 7 輸入...
查詢指定字元
本題要求編寫程式,從給定字串中查詢某指定的字元。輸入格式 輸入的第一行是乙個待查詢的字元。第二行是乙個以回車結束的非空字串 不超過80個字元 輸出格式 如果找到,在一行內按照格式 index 下標 輸出該字元在字串中所對應的最大下標 下標從0開始 否則輸出 not found 輸入樣例1 m pro...
strip去掉首尾空格和指定字元Python
coding utf 8 建立乙個字串hello world hello world the world is big 利用strip 方法處理hello world字串 blank hello world hello world.strip char hello world hello world...