ユーザーから 2 つの文字列を取得するプログラムを作成します。プログラムは、s_short が s_long の部分文字列であることを確認し、s_short が s_long 内で見つかった場合、プログラムは s_short が s_long 内で発生するインデックス位置を出力する必要があります。s_short が s_long の部分文字列でない場合、プログラムは -1 を出力する必要があります。例
RESTART
Enter the long string: aaaaaa
Enter the short string: aa
0 1 2 3
RESTART
Enter the long string: aaaaaaa
Enter the short string: ab
-1
それは私のコードですが、動作しません
s_long=input("Enter a long string:")
s_short=input("Enter a short string:")
for index, s_short in enumerate(s_long):
if (len(s_short))>=0:
print(index)
else:
print("-1")