print(_, end = ' ')

PHOTO EMBED

Mon Aug 17 2020 10:24:53 GMT+0000 (Coordinated Universal Time)

Saved by @SwarleyBL

_ = 5
while _ < 10:
    print(_, end = ' ') # default value of 'end' id '\n' in python. we're changing it to space
    _ += 1
content_copyCOPY