Checkpoint 9.13.1.
- zpzpzpzpzp
- The order of concatenation matters.
- zzzzzppppp
- Think about the order that the program is executed in, what occurs first?
- pzpzpzpzpz
- Yes, because let_two was put before let, c has "pz" and then that is repeated five times.
- pppppzzzzz
- Think about the order that the program is executed in, what occurs first?
- None of the above, an error will occur.
- This is correct syntax and no errors will occur.
What will the output be for the following code?
let = "z"
let_two = "p"
c = let_two + let
m = c*5
print(m)