2017-12-15python全栈9期第二天第七节之整除时间:2025-05-07 13:35:08#!/user/bin/python# -*- coding:utf-8 -*-a = 10b = 20print(a // b)print(b // a)