当前位置:   article > 正文

99个python经典内置函数!附代码示例_python函数代码

python函数代码

99个python经典内置函数!附代码示例

1. 数学函数

  1. abs(-10)  # 返回绝对值
  2. max(1, 2, 3)  # 返回最大值

2. 类型转换函数

  1. int(3.14)  # 将浮点数转换为整数
  2. str(100)  # 将整数转换为字符串

3. 序列操作函数

  1. len([123])  # 返回列表长度
  2. sum([123])  # 求和

3. 字符串函数

  1. len("Python")  # 返回字符串长度
  2. "hello".upper()  # 转换为大写

4. 输入输出函数

  1. input("Enter a number:")  # 读取输入
  2. print("Hello, World!")  # 打印输出

5.列表操作函数

  1. list(range(5))  # 生成列表
  2. sorted([312])  # 返回排序后的列表

6. 字典操作函数

  1. dict(zip(['a''b'], [12]))  # 创建字典
  2. {'name''John'}.get('name')  # 获取字典值

7.文件操作函数

  1. file = open('example.txt''w')
  2. file.write('Hello, World!')
  3. file.close()

8. 其他函数

  1. type(5)  # 返回对象类型
  2. help(max)  # 获取函数帮助信息

9.迭代函数

  1. for indexvalue in enumerate([102030]):  # 枚举元素
  2.     print(indexvalue)

10. 布尔函数

  1. all([TrueFalseTrue])  # 检查所有元素为真
  2. any([FalseFalseTrue])  # 检查任意元素为真

10. 其他函数-进制

  1. hex(255)  # 返回十六进制表示
  2. oct(8)  # 返回八进制表示
  3. round(3.141592)  # 四舍五入到指定小数位数

11. 集合操作函数

  1. set1 = {123}
  2. set2 = {345}
  3. set1.union(set2)  # 返回集合的并集
  4. set1.intersection(set2)  # 返回集合的交集

12. 文件操作函数

  1. with open('example.txt''r'as file:
  2.     content = file.read()
  3.     print(content)

13. 其他函数

  1. pow(23)  # 返回幂运算结果,相当于2^3
  2. format(255'x')  # 格式化数字为十六进制字符串

14. 字符串处理函数

  1. "hello".capitalize()  # 首字母大写
  2. "hello".replace('e''a')  # 替换字符

15. 数学函数

  1. round(3.7)  # 四舍五入
  2. divmod(103)  # 返回商和余数的元组

16.文件操作函数

  1. file = open('example.txt''r')
  2. lines = file.readlines()
  3. file.close()

17.其他函数

  1. callable(print)  # 检查对象是否可调用
  2. isinstance(5int)  # 检查对象是否属于指定类型

18.slice(stop): 创建一个切片对象,用于切片操作.

  1. numbers = [12446]
  2. = slice(2)
  3. print(numbers[s])  # 输出:[12]

19. sorted(iterable[, key][, reverse]):返回一个排序后的列表.

  1. numbers = [31625]
  2. sorted_numbers = sorted(numbers)
  3. print(sorted_numbers)  # 输出:[12365]

20.staticmethod(function):将一个函数转换为静态方法.

  1. class MyClass:
  2.     @staticmethod
  3.     def my_method():
  4.         print("This is a true wolrd.")
  5. MyClass.my_method()  # 输出:This is a true world .

等等

  • 以上是Python中一些常用的内建函数的介绍和示例.希望能对你有所帮助!

  • 感谢大家的关注和支持!想了解更多Python编程精彩知识内容,请关注我的 微信公众号:python小胡子,有最新最前沿的的python知识和人工智能AI与大家共享,同时,如果你觉得这篇文章对你有帮助,不妨点个赞,并点击关注.动动你发财的手,万分感谢!!!

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/623266
推荐阅读
相关标签
  

闽ICP备14008679号