11. Variable String

1texto = "Joaquin y Maria comen pan"
2print(texto)
line that just executed

next line to execute

Print output (drag lower right corner to resize)
Frames
Objects

Activity: CodeLens 11.1 (cl_l05_11a)

1texto = "Joaquin y Maria comen pan"
2print(len(texto))
line that just executed

next line to execute

Print output (drag lower right corner to resize)
Frames
Objects

Activity: CodeLens 11.2 (cl_l05_11b)

1texto = "Joaquin y Maria comen pan"
2print(texto[0])
3print(texto[2])
4print(texto[5])
5print(texto[10])
6print(texto[15])
line that just executed

next line to execute

Print output (drag lower right corner to resize)
Frames
Objects

Activity: CodeLens 11.3 (cl_l05_11c)

1texto = "Juan y Maria comen pan"
2print(texto[22])
line that just executed

next line to execute

Frames
Objects

Activity: CodeLens 11.4 (cl_l05_11d)

You have attempted 1 of 2 activities on this page