【说站】Python3.1中的特性有哪些
2025-01-15
4
Python3.1中的特性有哪些
1、千位数格式化,可以在使用字符串格式化函数时直接完成。
在格式化大数时,通常是每三位数放置逗号,使数字更易读(例如,1,048,576 比 1048576 更容易读)。
"2 to the 20th power is {:,d}".format(2**20) '2 to the 20th power is 1,048,576'
2、collections.Counter类是collections的一部分。
是 Python 中的一个秘密超级武器。它经常在 Python 的面试题的简单解答中首次遇到,但它的价值并不限于此。
hd_song = """ In winter, when the fields are white, I sing this song for your delight. In Spring, when woods are getting green, I'll try and tell you what I mean. In Summer, when the days are long, Perhaps you'll understand the song. In Autumn, when the leaves are brown, Take pen and ink, and write it down. """
3、执行软件包中的 __main__ 模块。
从 Python 3.1 开始,python -m package 将执行软件包中的 __main__ 模块。这是一个放调试脚本或命令的好地方,这些脚本主要是用工具执行的,不需要很短。
以上就是Python3.1中的特性,希望对大家有所帮助。更多Python学习指路:python基础教程
本文教程操作环境:windows7系统、Python 3.1,DELL G3电脑。
更新于:5小时前赞一波!
相关文章
- 【说站】mysql有哪些备份数据库的方式
- 【说站】mysql有哪些数据操作
- 【说站】mysql中自定义变量有哪些
- 【说站】python列表有哪些特点
- 【说站】Python数据可视化库有哪些
- 【说站】mysql查询优化策略有哪些
- 【说站】python有哪些切片类型
- 【说站】python最短路径有哪些算法
- 【说站】java中BigDecimal有哪些用法
- 【说站】python中mock有哪些统计的方法
- 【说站】python集合魔法函数有哪些
- 【说站】mysql中explain有哪些属性
- 【说站】mysql数据库有哪些调优方法
- 【说站】python中pandas有哪些功能特色
- 【说站】Python列表中有哪些索引
- 【说站】python列表操作符有哪些
- 【说站】js有哪些常用的数组api
- 【说站】python装饰器有哪些作用
- 【说站】python中树有哪些种类
- 【说站】python time库有哪些时钟
文章评论
评论问答