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 ?
var1 will store (2, 12100.0) and var2 will store (0.2, 12100.0). They both are tuples.
var1 will store (2, 12100.0) and var2 will store (0.2, 12100.0). They both are tuples.
single quotes string, fractional floating point literal, double quotes string, double quotes string
What kind of program elements are the following ? ‘a’, 4.38925, “a”, “main” ? Read More »