11. String Variable

1text = "Joaquin and Maria eat bread"
2print(text)
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_en)

1text = "Joaquin and Maria eat bread"
2print(len(text))
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_en)

1text = "Joaquin and Maria eat bread"
2print(text[0])
3print(text[2])
4print(text[5])
5print(text[10])
6print(text[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_en)

1text = "Juan and Maria eat bread"
2print(text[22])
line that just executed

next line to execute

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

Activity: CodeLens 11.4 (cl_l05_11d_en)

You have attempted 1 of 2 activities on this page