私は文字列のリストを含むファイルを持っています。Pythonの文字列内の特定の文字を置換する
['Alabama',
'Auburn (Auburn University)[1]',
'Florence (University of North Alabama)',
'Jacksonville (Jacksonville State University)[2]',
'Livingston (University of West Alabama)[2]',
'Montevallo (University of Montevallo)[2]',
'Troy (Troy University)[2]',
'Tuscaloosa (University of Alabama, Stillman College, Shelton State)[3][4]',
'Tuskegee (Tuskegee University)[5]',
'Alaska',
'Fairbanks (University of Alaska Fairbanks)[2]',
'Arizona',
'Flagstaff (Northern Arizona University)[6]',
'Tempe (Arizona State University)',
'Tucson (University of Arizona)',
'Arkansas',
'Arkadelphia (Henderson State University, Ouachita Baptist University)[2]',
'Conway (Central Baptist College, Hendrix College, University of Central
Arkansas)[2]']
私のように文字列値を持つリストを含むリストを作成する必要があります:
['Alabama',
'Auburn',
'Florence',
'Jacksonville',
'Livingston',
'Montevallo',
'Troy',
'Tuscaloosa',
'Tuskegee',
'Alaska',
'Fairbanks',
'Arizona',
'Flagstaff',
'Tempe',
'Tucson',
'Arkansas',
'Arkadelphia',
'Conway']
嘆願は私にこれを行うにはどのような方法を提案する。ここファイルです。
これまでに何を試みましたか?あなたの例に示されているテキストは、ファイル内の正確なテキストですか、それともPythonのリストに読み込まれた後の見た目ですか? –
コードを書くことをお勧めします。 – jonrsharpe
'[i.split( '(')[0] for my_list]' – piRSquared