from pynput.keyboard import Key, Controller
import time
keyboard = Controller()
time.sleep(4)
for char in "Congratulations on reaching the final lesson of Typing Jungle! Now that you have worked through this lesson plan, you should see great improvement in your typing skills. Your dedication and hard work will pay off in many aspects of your life. If you would like to continue improving, go back and redo any lessons where you haven't earned 5 stars. You can also try one of our many other lesson plans. Thank you for practicing with TypingClub!":
keyboard.press(char)
keyboard.release(char)
# make it look like someone is typing super duper fast
time.sleep(0.03)