so im fiddling around in pytbon cuz im bored and i realise i try to slow print a input i have earlier in the code i bave defined slow print ive imported every thing i need but when i run it it saw its got 1 positional argument buts been give 2 and im not that good at coding and am only a young student so coupd anyone be a huge help and explain it in basic terms
`
import sys
import os
import time
def print_slow(str):
for letter in str:
sys.stdout.write(letter)
sys.stdout.flush()
time.sleep(0.1)
num1 = int(input("Chose any number: "))
print_slow("Did you say",num1)
so my issue is that i cant seem to get it to slow print i expected this to work like it always does but i've never slow printed an input before