Suppose that we have this code:
a = pi;
b = pi+2;
c = pi*2.2
out = [a b c]
returns:
out =
3.1416 5.1416 6.9115
I want this output (without rounding values to two decimal):
out =
3.14 5.14 6.91
I don't want print these values. I want see them with 2 decimals here: