What is the best way to create a string array in python?

后端 未结 11 1390
南旧
南旧 2021-02-03 17:45

I\'m relatively new to Python and it\'s libraries and I was wondering how I might create a string array with a preset size. It\'s easy in java but I was wondering how I might do

11条回答
  •  北恋
    北恋 (楼主)
    2021-02-03 18:31

    Are you trying to do something like this?

    >>> strs = [s.strip('\(\)') for s in ['some\\', '(list)', 'of', 'strings']]
    >>> strs 
    ['some', 'list', 'of', 'strings']
    

提交回复
热议问题