mu chance or much chance ?

日々の戯れ言

言語処理100本ノック 2015 03

  • 問題

03. 円周率
"Now I need a drink, alcoholic of course, after the heavy lectures involving quantum mechanics."という文を単語に分解し,各単語の(アルファベットの)文字数を先頭から出現順に並べたリストを作成せよ.

  • 解答例
strs = "Now I need a drink, alcoholic of course, after the heavy lectures involving quantum mechanics."
strs = strs.replace(",", "")
strs = strs.replace(".", "")
strs = strs.split()

count = [len(str) for str in strs]
print(count)
  • コメント

「replace」,「split」,「内包表記」について学びました.