The code below shows letter by letter of the sentence in parenthesis but it types from the left side when I run the program. Is there any way I can make the text print from the right side?
from time import sleep
hello = ("Hello")
for character in hello:
print (character, end = "", flush = True)
sleep(0.1)
print(" ")