Write the python expressions for the following..
1) Name is 'Riya' and age is between 10 and 15.
2) Find the integral part of the quotient when 100 is divided by 32.
Answers
Answered by
2
Following are the Python code to this question:
print ('Name is',"'" ,"Riya" ,"'", 'and age is between 10 and 15.')#print message
print(100//32)#print quotient value
Output:
Name is ' Riya ' and age is between 10 and 15.
3
Explanation:
In the above code, two programs are done, in the first line it prints the given expression as a message, and in the second line, it uses "//" to calculate the integer part of the quotient value.
Learn more:
Python code:https://brainly.in/question/20722955
Similar questions