[Python] ABC002 B 2019/3/22 2019/4/18 プログラミング B – 罠 W = input() output = '' for w in W: if w not in 'aiueo': output += w print(output) メモ pythonでは、in を使うと、その文字が含まれるかの判定を行うことができる。