これは私が行う方法を知っている限りですが、正しく行っているかどうかはわかりません。
L = [4, 10, 4, 2, 9, 5, 4 ]
n = len(L)
element = ()
if element in L:
print(element)
print("number occurs in list at the following position, if element not in list")
print("this number does not occur in the list")
複数回表示される要素を取得して、次のように印刷するにはどうすればよいですか?
4 occurs in L at the following positions: [0, 2, 6]