0
私の最初のプログラムの一つを作ろうとしています。 int
に変換しようとしましたが、機能しませんでした。リストインデックスは、タプルではなく整数またはスライスでなければなりません
list indices must be integers or slices, not tuple
stations = ['Schagen', 'Heerhugowaard', 'Alkmaar', 'Castricum', 'Zaandam', 'Amsterdam', 'Sloterdijk', 'Amsterdam Centraal', 'Amsterdam Amstel', 'Utrecht Centraal', '’s-Hertogenbosch', 'Eindhoven', 'Weert', 'Roermond', 'Sittard', 'Maastricht']
IndEind = stations.index(eindStation)
IndBegin = stations.index(beginStation)
intBegin = int(IndBegin)
intEind = int(IndEind)
print('stations[0]: ', stations[intBegin, intEind])
これは 'print( 'stations [0]:'、stations [intBegin:intEind])' –
私が助けることができる出力の例を教えてくれますか –