Say my program needs to declare the following variables when it starts:
Pos_List = []
Room_List = []
Type_List = []
Spec_List = []
Sub_List = []
Rtr_List = []
IPa_List = []
MAC_List = []
Currently to do this, I have exactly as shown above. My question is, is there a shorter way to do this, or even a way to do this all on one line? There are a couple of times in my program that this sort of thing occurs, and it takes up a lot of space. Any Suggestions? Thanks.