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.
変更したい
mylist = [['1'],['2'],['3']]
することが
mynewlist = (1,2,3)
pythonでそれを行う方法は?
単純なリスト内包表記は次のようになります。
mynewlist = [int(x[0]) for x in mylist]
もちろん、実際に出力としてタプルが必要な場合は、次のようにします。
mynewtuple = tuple(int(x[0]) for x in mylist)