私は区切り記号としてスペースを持つ2つの変数に以下のように各リストの値を分割しようとしています。しかし、リストではそうすることができません。それを行うためのより良い方法はありますか?親切に私に知らせてください。区切り記号で区切りリストの値を設定する - Python
List1 = ['help show this help message and exit','file Output to the text file']
for i in range(strlist.__len__()):
# In this loop I want to break each list into two variables i.e. help, show this help message and exit in two separate string variables.
print(strlist[i])
サイドノート:Pythonのコメントコメントのブロックには '#'で始まり、 ''' ''で始まります。 –
ペアのリストが必要な場合は、a、b in(s.split)の理解度 '[(a、b) (None、1)for List1)] ' –