If I want to declare three new arrays (a1, a2, a3), I can do this:
a1=[]
a2=[]
a3=[]
But now I want to do it all on one line, like
a1, a2, a3 = []
but this fails. How can I assign them all to an empty array on one line?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
To do something similar to your second example, you would still need to create three arrays: