#:The following code outputs a *. Pyd file after being compiled in Cython a = 5 / 6 print(a) #:return :a = 0 b = 1 a = 5 / 6 + b #: return : a = 0 print(a) a = 5 a = a / 6 #:return : a = 0.8333333333333334 print(a) #:After the *.pyd file is generated, run the following code ''' >> import problem >> 0 >> 0 >> 0.8333333333333334 '''