Posts

Showing posts with the label python basics Lesson-5

Python Basics- Lesson-5

Good Morning Boys. Welcome to the fifth session of the online classes for Python Programing. Let us look at the solutions of the Exercise given yesterday: 1. Accept a number from the user . Display an appropriate message . num=input("Enter a number") 2.  Accept a name from the user . Display an appropriate message . name=input("Enter your name") 3. Accept the name and age of the user. Display appropriate messages. name=input("Enter your name") age=input("Enter your age") 4. Accept two numbers from the user. Display appropriate messages before taking the input. num1= input("Enter the first number") num2= input("Enter the second number") 5. Accept a number from the user and typecast it to float. num=float(input("Enter the number")) If you have any doubt,feel free to share. _________________________________________________________________ By the end of this session, you wi...