Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.2k views
in Technique[技术] by (71.8m points)

Python declare multiple lists

I have more than 300 variables in a list and i have to make a list of each variables:

example:

x=['aze','qsd','frz']...

i want:

MAXaze=[]
MAXqsd=[]
MAXfrz=[]
...

without typing them

Thank you for the help

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You can use a dictionary to store the values:

x=['aze','qsd','frz',...]
vars = {}
for i in x:
    vars["MAX" + i] = []

Or in order for them to become real variables you can add them to globals:

x=['aze','qsd','frz',...]
for i in x:
    globals()["MAX" + i] = []

You can now use:

MAXaze = [1,2,3]

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...