SWETHA R

Results 1 comments of SWETHA R

def get_age_input(): age_input = input("Enter your age: ") if age_input.isdigit(): age = int(age_input) print(f"Your age is {age}") else: print("age is not valid") get_age_input() What this does: 1) Takes input from...