So I am writing a code and I want my input line to change the number with every guess. For example;
Enter a letter for guess #1:
(take input)
Enter a letter for guess #2:
(take new input)
Is there a way I can change the number after the # every time?
My code right now is
letterguess = input("Enter a letter for guess #")
I know that the input line can only take one argument, so when I try to add a , count
it doesnt work. I've tried to look up functions that can help but I'm getting stuck. Any advice helps! Thanks!