目录
零基础 Python 学习路线推荐 : Python 学习目录 >> Python 基础入门
divmod 函数也是 Python 的内置函数,它是把除数和余数运算结果结合起来,返回一个包含商和余数的元组 tuple (a // b, a % b)
''' 参数: x,y都是数字,可以是整形也可以是浮点数,x 是分子,y 是分母; 返回值:返回一个元组(x//y,x%y); ''' divmod(x, y)
# !usr/bin/env python # -*- coding:utf-8 _*- """ @Author:猿说编程 @Blog(个人博客地址): www.codersrc.com @File:Python divmod函数.py @Time:2021/04/04 11:00 @Motto:不积跬步无以至千里,不积小流无以成江海,程序人生的精彩需要坚持不懈地积累! """ print("{}".format(type(divmod(9,6)))) print("{}".format(divmod(9,6))) print("{}".format(type(divmod(9.2,6.6)))) print("{}".format(divmod(9.2,6.6))) ''' 输出结果: <class 'tuple'> (1, 3) <class 'tuple'> (1.0, 2.5999999999999996) '''
注意:divmod 函数只能接受整数 int 或浮点数类型 float 参数,不能使用字符串 string , 否则会报错!
未经允许不得转载:猿说编程 » Python divmod 函数
本文由博客 - 猿说编程 猿说编程 发布!