I got the following for loop in Python:
for x in ["a","b","c"]:
Inside this loop, I'm defining a data frame that includes a, b, and c in their name: df_a, df_b, df_c. I also need those a, b, and c for calculations, say, a+1, etc.
At the end of this loop, I want to print the number of observations in each data frame: df_a.shape[0], etc.
Can anyone address me on how to do this?