Computer Science, asked by saranshrock3211, 10 months ago

67//2 output python code

Answers

Answered by codiepienagoya
0

The output of the given python program as follows:

Output:

33

Explanation:

The correct python program to this question as follows:

Program:

a=67//2  #defining variable a

print ('value of 67//2: ', a)  #print variable value

description of the above program as follows:

  • In the above python, a variable "a" is defined, holds a value that is "67//2".
  • In this, variable a double "//" divide value is used, in which the first divide '/ ' is used to hold "quotient" value, and the second '/ ' divide is used for hold an only integer value.  
  • In the next step, the print function is used that, print a variable value that is "33".

Learn more:

  • Python program: brainly.in/question/14337377
Similar questions