Pass statement
Pass Statement
pass statement in Python programming is a null statement. pass statement when executed by the interpreter it is completely ignored. Nothing happens when pass is executed, it results in no operation.
pass statement can be used in ‘if’ clause as well as within loop construct, when you do not want any statements or commands within that block to be executed.
Syntax:
pass
Example : Program to illustrate the use of pass statement
a=int (input(“Enter any number :”))
if (a==0):
pass
else:
print (“non zero value is accepted”)
Output:
Enter any number :3
non zero value is accepted
Example : Program to illustrate the use of pass statement in for loop
for val in “Computer”:
pass
print (“End of the loop, loop structure will be built in future”)
Output:
End of the loop, loop structure will be built in future.
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
Write a Program to obtain temperature in Celsius and convert it into Fahrenheit using formula –
C X 9/5 + 32 = F
WAP to read todays date (only date Part) from user. Then display how many days are left in the current month.
WAP to print the volume of a cylinder when radius and height of the cylinder is given by user.
WAP to take two numbers and check that the first number is fully divisible by second number or not.
WAP to take the temperatures of all 7 days of the week and displays the average temperature of that week.
Program to find the simple interest based upon number of years. If number of years is more than 12 rate
of interest is 10 otherwise 15.
Write a program to input any choice and to implement the following.
Choice Find
1. Area of square
2. Area of rectangle
3. Area of triangle
Write a program to input any number and to print all natural numbers up to given number.
Write a program to input any number and to find sum of all natural numbers up to given number.
Write a program to input any string and count number of uppercase and lowercase letters.
Python program to calculate (BMI) body mass index of a person
Body Mass Index is a simple calculation using a person's height and weight. The formula is BMI=kg/m^2 where kg is a person's weight in kilogram and m^2 is the height in meter squared.
Write a program to input three numbers and swap them as this : 1st number becomes the 2nd number, 2nd number becomes the 3rd number and 3rd number becomes the first number.
Write a program to read three numbers in three variables and swap first two variables with the sums of first and second ,second and third number respectively.
Write a program to input a single digit(n) and print a 3 digit number created as <n(n+1)(n+2)> e.g., if you input 7, then it should print 789. Assume that the input digit is in range 1-7.
Write a program to accept a integer number from user and find its sum of digit.
Sample 1:
Input : 123
Output : Sum of Digit : 6
Sample 2:
Input : 1234
Output : Sum of Digit : 10
Write a python program to accept a integer number and count the number of digits in number.
Sample:
Input: 2223
Output: Number of Digits: 4
Write a Python program to accept a integer number form user and find the factorial value of input number.
The factorial of a number is the product of all the integers from 1 to that number. For example, the factorial of 6 is 1*2*3*4*5*6 = 720 . Factorial is not defined for negative numbers, and the factorial of zero is one, 0! = 1 .
Sample:
Input : 5
Output : 120
Write a Python program to input any number and print all factors of input number.
A factor is a number that divides into another number exactly and without leaving a remainder.
Sample:
Input : 12
Output : Factor of 12 are : 1,2,3,4,6 ,12
Write a Python program to accept a integer number from user and check number is composite Number or not.
Composite number is a whole numbers that have on 1 or more than 1 factors excluding 1 and itself.
Write a python program to accept a integer number form user and find the largest digit of number.
Sample:
Input : 12341
Output : Largest Digit is : 4
Write a python program to accept a integer number form user and find the smallest digit of number.
Sample:
Input : 12341
Output : Smallest Digit is : 1
write a program to print the table of a given number. The number has to be entered by the user.
write a program to calculate the sum of odd numbers divisible by 5 from the range 1..100
Write a Python program to accept 3 sides of triangle and find the area of triangle.
s = (a+b+c)/2
area = √(s(s-a)*(s-b)*(s-c))
Write a python program which accept two times as input and displays the total time after adding both the entered times.
Sample Input :
Enter Time 1 :
Hour : 3
Minute : 40
Enter Time 2 :
Hour : 2
Minute : 35
Output:
Time 1 : 3 Hour & 40 Minute
Time 2 : 2 Hour & 35 Minute
Total Time : 6 Hour & 15 Minute
Write a python program which accept two times (HH:MM:SS) as input and displays the total time after adding both the entered times.
Sample :
Input:
Enter Time 1 :
Hour : 2
Minute : 40
Second : 45
Enter Time 2 :
Hour : 1
Minute : 35
Second : 40
Output:
Time 1 : 2 Hour, 40 Minute and 45 Second
Time 2 : 1 Hour, 35 Minute and 40 Second
Total Time : 4 Hour & 16 Minute and 25 Second
write a program to print one of the words negative, zero or positive, according to whether variable x is less than zero, zero, or greater than zero, respectively.
Write a program that returns True if the input number is an even number, False otherwise.
Write a python program to input cost price, selling price of product from user and check whether is profit or loss and also print the Profit/loss amount
Write a python program to input a number form user and check whether number is buzz number or not.
A number is said to be Buzz Number if it ends with 7 or is divisible by 7.
Write a program to input assets, liabilities and capital of a company and test if accounting equation holds true for the given value (i.e., balanced or not).
Hint : assets == liabilities + capital
Write a program to input total debt and total assets and calculate total-debt-to-total-assets ratio (TD/TA) as Total Debt/Total Assets. Then print if the major portion of the debt is funded by assets (when TD/TA > 1) or greater portion of assets is funded by equity (when TD/TA < 1).
Write a program to calculate Debt-to-equity (D/E) ratio as [ Total Liabilities / Total shareholders' ] equity after inputting total liabilities and total shareholders' equity. And then print if an investor should invest in the company or not. A D/E ratio greater than 2.0 indicates a risky scenario for an investor.
Write a python program to accept an integer number to find out and print the difference between greatest and smallest digits presents in the number .
Write a python program to accept an integer number and print the frequency of each digit present in the number .
Sample:
Input : 3255435
Output:
Digit Frequency
2 1
3 2
4 1
5 3
Write a program to print Floyd's triangle as shown below:
1
2 3
4 5 6
7 8 9 10
11 12 13 14 15