Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
すべての助けに感謝しますが、ドキュメントを読んで答えを見つけました
意図または描写したとおりのリストである場合は、文字列を整数に変換するだけです。組み込みのマップを使用するとうまくいきます
>>> some_list = ['1','2','3','4'] >>> map(int, some_list) [1, 2, 3, 4]
同等のリスト内包表記ソリューションは次のようになります。
>>> [int(e) for e in some_list] [1, 2, 3, 4]