首页 > 文章列表 > python中如何表示整除

python中如何表示整除

Python 整除
469 2022-08-07

python用双斜杠//来表示整除,例:

i = 100;
print(i // 13);

输出: