#範例4-9:顯示一個對聯的文字集合(刪除標點符號) a=" 天增歲月人增壽,春滿乾坤福滿門。 " a.strip() b = set(a) b.remove(',') b.remove('。') b.remove(' ') print(b)