I am self teaching myself python 3.8 I have some experience with BATCH which has a GOTO function. Is there a function in python that replicates it. I know there's other question about it .But none of them answers how a beginner can understand it.
For example :
try:
age = int(input('input your age: '))
print(age)
except ValueError:
print('Enter a value')
Let's say I want to jump to the beginning whenever user enters something else than a number.