f = open(“input/schedule_202004.txt”,”r”,encoding=”utf-8″)
schedules = f.readlines()→これには最後に改行の情報が含まれるから削除する必要があり
f.close()
for schedule in schedules:
schedule_strip=schedule.strip()
stripの前には文字 そのため、forでリピートするリストと単語を設定する必要あり。
その後にif文を入れる。
if schedule_strip.endswith(“特定の文字”):
print(schedule_strip)
コメント