I have this code:
print(nextaction + ' ', end="")
time.sleep(2)
print(nextplayer+"'s ", end="")
time.sleep(1)
print(nextitem + '!')
time.sleep(3)
When I run this with F5 in the shell, it works properly and pauzes the given amount of seconds. But when I run in the command window, by just double clicking the PGM in the folder, it only does the first pauze (before printing the line) and then prints everything at once.
For clarity, the resulting line is always something like "Kill Mike's dog!". but I want a pauze between each word.
I have no clue why this happens.