fzxcntrl
Results
2
comments of
fzxcntrl
hey @DHEERAJHARODE , I have added 40 questions in the following order QUESTION NAME - QUESTION - SOLUTION - LEET CODE LINK . please merge my PR .
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: Takes input from the...