Unit 1 - Lesson 14 14.1.1. Write a program that asks the user for a weight in kilograms and converts it to pounds. There are 2.2 pounds in a kilogram. kg = int(inp…
Unit 1 - Lesson 13 13.1.1. Introduction To Numbers # find quotient using '/' and '//' and remainder using '%' #like (a/b) and (a//b) and (a…
Unit 1 - Lesson 12 12.1.1. Identity Operators - An overview (c) id(object) is unique and Constant for an object during its lifetime. 12.1.2. Identity Operator…
Unit 1 - Lesson 11 11.1.1. Logical Operators - An overview (b) In logical and the result is true if the both operands are true. 11.1.2. Logical Operators - An…
Unit 1 - Lesson 10 10.1.1. Assignment Operators - overview x= int(input("x: ")) y= int(input("y: ")) print("x += y: x =", x+y,&q…
Unit 1 - Lesson 9 9.1.1. Arithmetic Operators - An overview (a) Python supports 7 arithmetic operators. (b) An exponent operator is represented by ** in Python…
Unit 1 - Lesson 8 8.1.1. Reading input in Python - strings place = input("Enter your favourite place: ")#take your favourite place using input state…
Unit 1 - Lesson 7 7.1.1. Introduction to Dictionary (a) Dictionary is a Python data type to store multiple values. (d) Keys of the dictionary cannot be changed…
Unit 1 - Lesson 6 6.1.1. Understanding List Creation value1 = input("Enter the first value: ") value2 = input("Enter the second value: ") …
Unit 1 - Lesson 5 5.1.1. Understanding Types of Data Types (a) In Python, we need not specify the data type of the variable. (d) type() function in Python is u…
Unit 1 - Lesson 4 4.1.1. Understanding Expressions number1 = 20.50 number2 = 38.25 # Print the multiplication of number1 and number2 using * operator. print(n…
Unit 1 - Lesson 3 3.1.1. Understanding Variables # In the below line, assign value 18 to the length variable length = 18 # In the below line, assign value &…
Unit 1 - Lesson 2 2.1.1. Understanding Python Comments # This is my first program print("I am a Python Guru") #print("Python is not cool") # pr…
Unit 1 - Lesson 1 1.1.1. What is a computer programming language? (b) The sequence of instructions (in the form of source code) written in a computer programming l…