I have a Python script that prints some numbers, like this:
results = [42, 21, 64, 32, 16, 8, 4, 2]
for number in results:
print(number, end=' ')
In the console, the output of this script is:
42 21 64 32 16 8 4 2 ⏎
Why is there a weird character at the end?
My IDE is LunarVim. My shell is Fish.