If I have five variables - each named var0, var1, var2, var3, var4 is there a shorter way to print these than typing out print(var0), print(var1) etc. for each one? Perhaps a for loop? Somewhat new to python. I have something I'm trying to create. If this is possible it should get me where I need to be.
Edit: They are dynamic variables, so none of those solutions would work. It could be var1-5 or var1-25.