How would I be able to 'move' the input function to be within a string? Basically I currently have this:
Age = 11
sentence1 = input("Tomorrow I will be ___ years old!")
while sentence1 != Age:
print("Nope, that's not it! Guess again!")
sentence1 = input("Tomorrow I will be ___ years old!")
When I run this program the input or 'cursor' always appears at the end of the sentence but I would like for it to start after the "be" in the sentence.