Consider the following code:
i=0
while i<5:print(i, end=" ")i = i + 1
which results in the output:
0 1 2 3 4
if i want to add a string "the result" before 1 2 3 4, output expected: the result 1 2 3 4 (on same line). What built in function should I use?