For loop
for loop is the most comfortable loop. It is also an entry check loop. The condition is checked in the beginning and the body of the loop(statements-block 1) is executed if it is only True otherwise the loop is not executed.
Syntax:
for counter_variable in sequence:
statements-block 1
[else: # optional block
statements-block 2]
The counter_variable mentioned in the syntax is similar to the control variable that we used in the for loop of C++ and the sequence refers to the initial, final and increment value. Usually in Python, for loop uses the range() function in the sequence to specify the initial, final and increment values. range() generates a list of values starting from start till stop-1.

Example : #program to illustrate the use of for loop - to print single digit even number
for i in range (2,10,2):
print (i, end=' ')
Output:
2 4 6 8
Example : #program to illustrate the use of for loop - to print single digit even number with else part
for i in range(2,10,2):
print (i,end=' ')
else:
print ("\nEnd of the loop")
Output:
2 4 6 8
End of the loop
Example : # program to calculate the sum of numbers 1 to 100
n = 100
sum = 0
for counter in range(1,n+1):
sum = sum + counter
print("Sum of 1 until %d: %d" % (n,sum))
Output:
Sum of 1 until 100: 5050
Example : program to illustrate the use of string in range() of for loop
for word in 'Computer':
print (word,end=' ')
else:
print ("\nEnd of the loop")
Output
C o m p u t e r
End of the loop
Qus. What are operators? What is their function? Give examples of some unary and binary operators.
Ans: “Operators are those symbols used with operands, which tells compiler which operation is to be done on operands.‖ in other words – ―operators are tokens that trigger some computation/action when applied to variables and other objects in an expression.‖
Operators are of following types:
- Unary operators like (+) Unary Plus, (-) Unary Minus, not etc.
- Binary Operators like (+) addition, (*) multiplication, and etc.
Qus. What is block/code block/suit in Python?
Ans: Sometimes a group of statements is part of another statement of function. Such a group of one or more statements is called block or code-block or suit in python. e.g.

Qus. What is the role of indentation in Python?
Ans: Indentation plays a very important role in Python. Python uses indentation to create blocks of code. Statements at same indentation level are part of same block/suit. You cannot unnecessarily indent a statement; python will raise an error for that.
Qus. How many types of strings are supported by Python?
Ans: Python supports two types of strings:
(i) Single-line string That terminates in single line.
(ii) Multi-line String That stores multiple lines of text.
Qus. What will be the sizes of following constants?
(a) "\a‟ (b) “\a” (c) “Kumar\‟s” (d) "\‟ (e) “it‟s”
Ans: (a) 50 (b) 50 (c) 56 (d) 50 (e) 53
This screenshot is the output of the above question.

Qus. How can you create multi-line strings in Python?
Ans: We can create multi-line string by putting a backslash (\) at the end of line which allows you to continue typing in next line in same string.

Qus. Which of the following are syntactically correct strings? State reason.
(a) ”Python is nice Language”
(b) „He called me “Friend!” when he came‟
(c) “Very Good‟
(d) „This is a good book‟
(e) “Namaste
(f) “I liked „Harry Potter‟ very much”
Ans: (a) Correct (b) Correct (c) Incorrect (d) Correct (e) Incorrect (f) Correct
Qus. What is the error in following Python program with one statement?
print(“My name is : “, name)
suggest a solution
Ans: Error is : ―name 'name' is not defined‖. And the solution is to declare the variable-name before this statement.

Qus. Predict the output of the following:

Ans: Output: 17 5
Qus. What are augmented assignment operators? How are they useful?
Ans: An augmented assignment is generally used to replace a statement where an operator takes a variable as one of its arguments and then assigns the result back to the same variable. A simple example is x += 1 which is expanded to x = x + (1). Similar constructions are often available for various binary operators. They are helpful in making the source code small.
Qus. What are loops in Python? How many types of loop are there in Python?
Ans: Loops are iteration constructs in Python. Iteration means repetition of a set of statements depending upon a condition test. Loops has three basic elements within it to repeat the statements –
- Initialization (Start)
- Check Condition (Stop)
- Updation (Step)
Python provide two types of loop
(i) Conditional Loop while( (Condition based loop)
(ii) Counting loop for (loop for a given number of times).
Qus. What is the syntax of if-elif statement in Python?
Ans: The syntax of if-elif statement in python is as follows:
If condition1:
#code-block of statements when condition1 is true
elif condion2:
#code-block of statements when condition2 is true
elif condition3:
#code-block of statements when condition3 is true
.
.
.
else:
#code-block of statements when all above conditions are false.
Qus What are jump statements in Python? Name jump statements with example.
Ans: Python offers two jump statements to be used with in loops to jump out of loop-iterations.
These are break and continue statements.

Programs
python Program to obtain temperature in Celsius and convert it into Fahrenheit
View Solution
pythoon program to read todays date only date Part from user Then display how many days are left in the current month
View Solution
python program to print the area of circle when radius of the circle is given by user
View Solution
python program to print the volume of a cylinder when radius and height of the cylinder is given by user
View Solution
python program that asks your height in centimeters and converts it into foot and inches
View Solution
python program accept three side of triangle and find area of a triangle
View Solution
python program to input principle amount,rate time and calculate simple interes
View Solution
python program to read a number in n and prints n2 n3 n4
View Solution
python program to calculate compound simple interest after taking the principle rate and time
View Solution
python program to take two numbers and check that the first number is fully divisible by second number or not
View Solution
python program which take value of x y z from the user and calculate the equation
View Solution
python program to take the temperatures of all 7 days of the week and displays the average temperature of that week
View Solution
python program to check the given year is leap year or not
View Solution
python program that searches for prime numbers from 15 through 25
View Solution
python program to test if given number is prime or not
View Solution
python program to compute the result when two numbers and one operator is given by user
View Solution
python program to calculate the roots of a given quadratic equation.
View Solution
python program to input a digit and print it in words
View Solution
python program to check whether square root of a given number is prime or not
View Solution
python program to print first n odd numbers in descending order.
View Solution
python program to find the average of the list of the numbers entered through keyboard
View Solution
python program to find the largest number from the list of the numbers entered through keyboard
View Solution
python program to find the sum of n natural numbers
View Solution
python program to find the sum of first n even numbers
View Solution
python program to find the sum of first n odd numbers.
View Solution
python program to generate a list of elements of Fibonacci Series
View Solution
python program to find simple interest based upon number of years
View Solution
python program to input any choice and to implement the following
View Solution
python program to input any number and to print all natural numbers up to given number
View Solution
python program to input any number and to find sum of all natural numbers up to given number
View Solution
python program to input any number and to find reverse of that number
View Solution
python program to input any string and count number of uppercase and lowercase letters
View Solution
python program to obtain three numbers and print their sum
View Solution
Python program to obtain length and breath of a rectangle and calculate its area
View Solution
python program to calculate body mass index of a person
View Solution
python program to input a number and print its cube
View Solution
python program to input three number and swap 3 numbers
View Solution
python program to read 3 numbers in 3variables and swap first two variables with the sums of first and second
View Solution
python program to input a single digit and print a 3 digit number
View Solution
python program to accept a integer number and find its sum of digit
View Solution
python program to count the number of digits in given number
View Solution
python program to find the factorial value of given number
View Solution
python program to check given number is composite number or not
View Solution
python program to find the largest digit of a given number
View Solution
python program to find the smallest digit of a given number
View Solution
python program to find sale price of an item with given price and discount
View Solution
python program to calculate the sum of odd numbers divisible by 5 from the range 1 to 100
View Solution
python program for addition of two times in hour and minute format
View Solution
python program for addition of two times in hour minute and second format
View Solution
python program to check number is positive negative or zero
View Solution
python program to check number is buzz number or not
View Solution
python program to input assets liabilities and capital then check accounting equation means balanced or not
View Solution
python program to input total debt and total assets and calculate total debt to total assets ratio and check whether major funded by assets or equity
View Solution
python program to calculate debt to equity check whether it is risky scenario for investor or not
View Solution
python program to find the difference between greatest and smallest digits presents in the number
View Solution
python program to print the frequency of digits present in given number
View Solution
python program to check whether given number is Armstrong or not
View Solution
python program to find all prime numbers up to given number
View Solution
Python program to calculate area and perimeter of a parallelogram
View Solution
Python program demonstrating working with power operator
View Solution
Python program to convert the distance in feet to inches yards and miles
View Solution
Python program to calculate GST Goods and Service Tax
View Solution
Python program to print absolute value of number provided by the user
View Solution
Python program to display menu to calculate area of square or rectangle
View Solution
Python program to input three number and print in ascending order
View Solution
Python program to check character is alphabetic character or not
View Solution
Python program to print ASCII code for entered message
View Solution
python program to obtain x y z from user and calculate expression
View Solution
python program that reads a number of seconds and prints it in form mins and seconds
View Solution
python program to take year as input and check if it is a leap year or not
View Solution
python program to take two numbers and print if the first number is fully divisible by second number or not
View Solution
python program to take a 2 digit number and then print the reversed number
View Solution
python program to take a 3 digit number and then print the reversed number
View Solution
python program to take two inputs for day month and then calculate which day of the year
View Solution
python program that asks a user for a number of years and then prints out the number of days hours minutes and seconds
View Solution
python program that inputs an age and print age after 10 years
View Solution
python program that generates six random numbers in a sequence created with start stop step
View Solution
python program to generate 3 random integers between 100 and 999 which is divisible by 5
View Solution
python program to generate 6 digit random secure OTP between 100000 to 999999
View Solution
python program to generate 6 random numbers and then print their mean median and mode
View Solution
python program to find a side of a right angled triangle whose two sides and an angle is given
View Solution
python program to calculate the radius of a sphere whose area is given
View Solution
python program to calculate the area of an equilateral triangle
View Solution
python program to input the radius of a sphere and calculate its volume
View Solution
python program to calculate amount payable after simple interest
View Solution
python program to input length of three sides of a triangle Then check if these sides will form a triangle or not
View Solution
python program to input 3 sides of a triangle and print whether it is an equilateral scalene or isosceles triangle
View Solution
python program to Print numbers from 11 to N When the number is a multiple of 3 print Tipsy when it is a multiple of 7 print Topsy
View Solution
python program to input N numbers and then print the second largest number
View Solution
python program to input list of numbers and find those which are palindromes
View Solution
python program to place and the most significant digit of number
View Solution
Python program to print every integer between 1 and n divisible by m Also report whether the number that is divisible by m is even or odd
View Solution
python program to find the LCM of two input numbers
View Solution
python program to find the ASCII Value of entered character
View Solution
python program to check number is perfect number or not
View Solution
Python program using if Elif else statement to find the number of days present in a month
View Solution
python program to print all buzz numbers between 1 to n
View Solution
Python program to input 3 numbers and check all are same or not
View Solution
python program to input 3 numbers from user and check these are unique numbers are not
View Solution
python program to input 2 integer number and check where they are same of different number
View Solution