6. Asignación de variables

1x = 5
2celsius = 5
3fahrenheit = 9 / 5 * celsius + 32
line that just executed

next line to execute

Frames
Objects

Activity: CodeLens 6.1 (cl_l40_6a)

1x = 0
2print(x)
3x = "aguacate"
4print(x)
5x = 3.14
6print(x)
7x = x * 2
8print(x)
line that just executed

next line to execute

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

Activity: CodeLens 6.2 (cl_l40_6b)

You have attempted 1 of 2 activities on this page