Posts

Showing posts from March, 2020

Python- Operators-6(a)

Python Operator Good Morning Boys. Lets take a look at  the topic of the day " Python Operators" ----------------------------------------------------------------- By the end of this session, you will be able to: Identify the various operators available in Python understand and apply the various arithmetic operators in Python. Understand the working of the arithmetic operators (after the discussion on the ZOOM class) ------------------------------------------------------------------------------------------------ Operators are used to perform operations on variables and values. Python divides the operators in the following groups: Arithmetic operators Assignment operators Comparison operators Logical operators Identity operators * Membership operators * Bitwise operators * * - These operators will be covered at a later stage when the related concepts are dealt. Python Arithmetic Operato...

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...

Python- Input function

Image
Good Morning Boys. Welcome to the fourth session of the online classes for Python Programing. ------------------------------------------------------------------------------------------------------------------------------ By the end of this session, you will be able to understand  the purpose and syntax of the input( )  function working of the input( ) function                  Understand and apply the concept of TYPECASTING. --------------------------------------------------------------------------------------------------------------------------------- Lets see whether the following terms are clear to you or not   ? 1. Identifier 2. Comment inline comment multiline comment Doubts if any, must be shared now. I am waiting.🙏  _ ______________________________________________________________   Having revised yesterday's content. Lets move ahead. The topic of the discussion today is t...