हिंदी

Write a program that takes the name and age of the user as input and displays a message about whether the user is eligible to apply for a driving license or not. (the eligible age is 18 years). - Computer Science (Python)

Advertisements
Advertisements

प्रश्न

Write a program that takes the name and age of the user as input and displays a message about whether the user is eligible to apply for a driving license or not. (the eligible age is 18 years).

संक्षेप में उत्तर

उत्तर

Program:
#Program to check the eligibility for driving license
name = input("What is your name? ")
age = int(input("What is your age? "))

#Checking the age and displaying the message accordingly
if age >= 18:
    print("You are eligible to apply for the driving license.")
else:
    print("You are not eligible to apply for the driving license.")

OUTPUT:
What is your name? John
What is your age? 23
You are eligible to apply for the driving license.
shaalaa.com
Introduction to Flow of Control - Selection
  क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
अध्याय 6: Flow of Control - Exercise [पृष्ठ १४०]

APPEARS IN

एनसीईआरटी Computer Science [English] Class 11
अध्याय 6 Flow of Control
Exercise | Q 1. | पृष्ठ १४०
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×