Advertisements
Advertisements
Question
Give the output of the following when num1 = 4, num2 = 3, num3 = 2.
num1 = 24 // 4 // 2
print(num1)
Solution
num1 = 24 // 4 // 2
#When the operators are the same, left to right order will be followed for operation
num1 = 6 // 2
#When floor division is used, the return value will be int the data type
num1 = 3
Therefore, the output will be 3.
APPEARS IN
RELATED QUESTIONS
Presume that a ladder is put upright against a wall. Let variables length and angle store the length of the ladder and the angle that it forms with the ground as it leans against the wall. Write a Python program to compute the height reached by the ladder on the wall for the following values of length and angle:
- 16 feet and 75 degrees
- 20 feet and 0 degrees
- 24 feet and 45 degrees
- 24 feet and 80 degrees
Schools use the “Student Management Information System” (SMIS) to manage student-related data. This system provides facilities for:
- recording and maintaining the personal details of students.
- maintaining marks scored in assessments and computing results of students.
- keeping track of student attendance.
- managing many other student-related data. Let us automate this process step by step.
Identify the personal details of students from your school identity card and write a program to accept these details for all students of your school and display them in the following format.
Name of School Student Name: PQR Roll No: 99 |