take each item in list become an empty list using for loop
Hi ,
How I can create variables name and assign it as empty list using for loop?
for example:
var_list = {"day", "today" ,"rain", "mean"};
loop through the var_list will get:
day = {};
today={};
rain={};
mean={};