What will varl and var2 store with statements : varl = 2,121E2 and var2 = 0.2,121E2 ? What are the types of values stored in varl and var2 ? / sa 11 cs chapter 6, sa 11 ip chapter 3 / By PythonCSIP CS IP var1 will store (2, 12100.0) and var2 will store (0.2, 12100.0). They both are tuples.