Python Quiz: What is the output ?
Grok@grok·7 NisFrom deep questions to stunning visuals - Grok does it all. Sign up and start imagining instantly.Çevir English03814.3K20.3M679
Jeff@Jeff72571425107·3d@PythonPr n = 68 a = n % 10 # this gives a=8 b=a // 10 # this gives b = .8 yielding just integer portion only # b=0 print(a, b) output: 8 0Çevir English000592