11 lines
254 B
Text
11 lines
254 B
Text
V x = 77444
|
||
V y = -12
|
||
V z = 0
|
||
(x, y, z) = tuple_sorted((x, y, z))
|
||
print(x‘ ’y‘ ’z)
|
||
|
||
V xs = ‘lions, tigers, and’
|
||
V ys = ‘bears, oh my!’
|
||
V zs = ‘(from the "Wizard of OZ")’
|
||
(xs, ys, zs) = sorted([xs, ys, zs])
|
||
print(xs"\n"ys"\n"zs)
|