Computer Science, asked by sayanthkaboom, 7 months ago

predict the output for12*(3%4)//2+6​

Answers

Answered by rohitkhajuria90
0

12*(3%4)//2+6 will work fine in python and the output will be 24

12*(3%4)//2+6 will not work because after // statement will be commented. To make it work you have to replace /% with single / and then the output will be 24

Similar questions