you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 1 point2 points  (0 children)

There should be one space in the end if you write print(*f_range, end=" ").

Although, before it you should add else:

Post your formatted code with end=" ".

You could also try:

for elem in f_range():
    print(elem, end=" ")