每个人都应该使用的Python 3中被忽略的3个功能

重点 (Top highlight)

Python 3 has been around for a while now, and most developers — especially those picking up programming for the first time — are already using it. But while plenty of new features came out with Python 3, it seems like a lot of them are unknown or underutilized. In today’s article, I’ll talk about three lesser-known yet very useful features. They are features that I’ve come to know and love in other languages that I really think make Python 3 great.

Python 3已经存在了一段时间,并且大多数开发人员(尤其是那些初次接触程序的开发人员)已经在使用它。 但是,尽管Python 3推出了许多新功能,但似乎其中许多功能还是未知的或未得到充分利用。 在今天的文章中,我将讨论三个鲜为人知但非常有用的功能。 它们是我真正认为使Python 3很棒的其他语言所熟悉和喜爱的功能。

枚举 (Enumerations)

Enums are something I’ve used in Java and Swift a lot, and my usage of them extends into Python.

枚举是我在Java和Swift中经常使用的东西,我对它们的使用扩展到了Python中。

Declaring an enum in Python is very easy and could also be done prior to Python 3 (albeit with more limited functionality):

在Python中声明一个枚举非常容易,也可以在Python 3之前完成(尽管功能有限):

In the code above, you can see an enum is easily declared by declaring a class and making it a subclass of Enum. From there, you just define each of your states in the following lines.

在上面的代码中,可以看到通过声明一个类并将其作为Enum的子类来轻松声明一个Enum 。 从那里,您只需在以下几行中定义每个状态。

In my case, I had AIR, LAND, and SEA available.

就我而言,我有AIRLANDSEA可用。

The functionality that was added in Python 3 is the ability to do .value and .name. Those will allow you to get the associated integer value with the state or the string associated with it.

Python 3中添加的功能是可以执行.value.name 。 这些将允许您获取带有状态或与之关联的字符串的关联整数值。

In the code above, printing State.LAND.name will return LAND, so the functionality is more than just an integer.

在上面的代码中,打印State.LAND.name将返回LAND ,因此功能不仅限于整数。

Enums are useful in code when you want a descriptive representation of constants. For example, instead of checking if a state is 0 or 1, it is much better to check if it is State.MOVING or State.STATIONARY. Your constants could change, and if someone is looking at your code, MOVING makes a lot more sense than 0. As a result, readability is greatly improved.

当您想要常量的描述性表示形式时,枚举在代码中很有用。 例如,与其检查状态是否为01 ,不如检查状态为State.MOVINGState.STATIONARY 。 您的常数可能会更改,并且如果有人在看您的代码,则MOVING0有意义得多。 结果,大大提高了可读性。

For more reading, check out the official Python 3 documentation on Enum here.

有关更多信息,请在此处查看Enum上的Python 3官方文档。

格式 (Format)

Added in Python 3.6, fstrings are a great way to format text. They provide much greater readability and are less error-prone (which I certainly enjoy, coming from languages like Java).

fstrings是在Python 3.6中添加的,是格式化文本的好方法。 它们提供了更高的可读性,并且不易出错(我当然很喜欢,来自Java之类的语言)。

fstrings are a more readable way than the format previously used in Python. Here is an example of using format:

fstrings比以前在Python中使用的format更易读。 这是使用format的示例:

As you can see we have empty brackets through the string and then afterwards we list out the name of each variable in order.

如您所见,我们在字符串中使用了方括号,然后按顺序列出了每个变量的名称。

Now take a lot at the same code but using fstring it is much more readable, and very akin to formatting a string in Swift.

现在花很多时间在相同的代码上,但是使用fstring更具可读性,非常类似于在Swift中格式化字符串。

To accomplish this cleaner string, we simply preface our quotes with the letter f and then instead of having empty brackets, we put the variable or data into the brackets directly. Since the variables are written within the brackets themselves you don’t have to count the number of items written in format to figure out what variable is placed where — the variables exists right where they are going to be placed.

为了完成此更清晰的字符串,我们只需在引号前加上字母f ,然后将变量或数据直接放在方括号中即可,而不用使用空括号。 由于变量是用括号括起来的,因此您不必计算以格式编写的项目数,就可以知道将哪个变量放置在什么位置-变量存在于要放置的位置。

Doing fstrings produces much more readable and reliable code than doing something like string concatenation or format strings.

与执行字符串连接或格式化字符串之类的操作相比,执行fstrings产生的代码更具可读性和可靠性。

资料类别 (Data Classes)

Data classes may be a more obscure subject than the other topics I’ve touched on, so I’ll explain them briefly. Data classes are something I’ve grown to really like in Kotlin, so I really like trying to use them in Python as well.

数据类可能是一个比我提到的其他主题更晦涩的主题,因此我将简要解释它们。 数据类是我在Kotlin中逐渐喜欢的东西,因此我也非常想尝试在Python中使用它们。

A data class is effectively a class whose sole purpose is to literally hold data. The class will have variables that can be accessed and written to, but there is no extra logic on top of it.

数据类实际上是一个类,其唯一目的是从字面上保留数据。 该类将具有可以访问和写入的变量,但是它之上没有多余的逻辑。

Imagine you have a program and you pass a string and an array of numbers between different classes. You could just have methods like pass(str, arr), but a much better approach would be to make a data class that only contains a string as a field and an array.

假设您有一个程序,并且在不同的类之间传递了一个字符串和一个数字数组。 您可能只具有pass(str, arr) ,但是更好的方法是制作一个仅包含字符串作为字段和数组的数据类。

By making a data class, what you are doing will be much clearer and it will also be easier to unit test.

通过创建数据类,您所做的事情将更加清楚,并且单元测试也将更加容易。

I’ll give an example of how to make a simple data class that represents a three-dimensional vector, but this can easily be extended to represent any combination of different data:

我将给出一个示例,说明如何制作表示三维向量的简单数据类,但这可以轻松扩展以表示不同数据的任何组合:

Here, you can see the definition of a data class is very similar to declaring a normal class, except we use @dataclass before it and then each field is declared like name: type.

在这里,您可以看到数据类的定义与声明普通类非常相似,不同之处@dataclass我们在数据类之前使用@dataclass ,然后每个字段都像name: type一样被声明。

While the functionality of our created Vector3D is limited, the point of the data class is just to increase efficiency and reduce errors in your code. It’s much better to pass around a Vector3D than int variables.

虽然我们创建的Vector3D的功能受到限制,但数据类的目的只是为了提高效率并减少代码中的错误。 这是更好的通过周围Vector3Dint变量。

For more detail on @dataclass check out the official Python 3 documentation here.

欲了解更多细节上@dataclass查看官方的Python 3文档在这里 。

结论 (Conclusion)

If you’ve tried any of these new features let me know in a comment! I’d love to hear your different use cases for them. Happy coding!

如果您尝试过任何这些新功能,请在评论中告诉我! 我很想听听您的不同用例。 编码愉快!

翻译自: https://medium.com/better-programming/3-neglected-features-in-python-3-that-everyone-should-be-using-65cffc96f235

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/387926.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

iframe自适应高度

为什么需要使用iframe自适应高度呢?其实就是为了美观,要不然iframe和窗口长短大小不一,看起来总是不那么舒服,特别是对于我们这些编程的来说,如鲠在喉的感觉。 首先设置样式 body{margin:0; padding:0;} 如果不设置bod…

.Net转Java自学之路—SpringMVC框架篇八(RESTful支持)

RESTful架构,REST即Representational State Transfer。表现层状态转换,就是目前最流行的一种互联网软件架构。它结构清晰、符合标准、易于理解、扩展方便,所以得到越来越多网站的采用。 RESTful其实就是一个开发理念,是对http的很…

冲刺第七天

今天任务进行情况:今天我们将我们的游戏导到界面形成可用的应用程序,并且进行调试与运行,让同学试玩,发现了困难并加以改正。 遇到的困难及解决方法: 运行时发现游戏界面中UI的button和image的位置会随分辨率的不同而发…

数据探查_数据科学家,开始使用探查器

数据探查Data scientists often need to write a lot of complex, slow, CPU- and I/O-heavy code — whether you’re working with large matrices, millions of rows of data, reading in data files, or web-scraping.数据科学家经常需要编写许多复杂,缓慢&…

Node.js Streams:你需要知道的一切

Node.js Streams:你需要知道的一切 图像来源 Node.js流以难以使用而闻名,甚至更难理解。好吧,我有个好消息 - 不再是这样了。 多年来,开发人员在那里创建了许多软件包,其唯一目的是简化流程。但在本文中,我…

oracle表分区

1.表空间:是一个或多个数据文件的集合,主要存放的是表,所有的数据对象都存放在指定的表空间中;一个数据文件只能属于一个表空间,一个数据库空间由若干个表空间组成,其中包括:a.系统表空间:10g以前,默认系统表空间是System,10g包括10g以后,默认系统表空间是User,存放数据字典和视…

oracle异机恢复 open resetlogs 报:ORA-00392

参考文档:ALTER DATABASE OPEN RESETLOGS fails with ORA-00392 (Doc ID 1352133.1) 打开一个克隆数据库报以下错误: SQL> alter database open resetlogs; alter database open resetlogs * ERROR at line 1: ORA-00392: log 1 of thread 1 is being…

从ncbi下载数据_如何从NCBI下载所有细菌组件

从ncbi下载数据One of the most important steps in genome analysis is gathering the data required for downstream research. This sometimes requires us to have the assembled reference genomes (mostly bacterial) so we can verify the classifiers trained or bins …

shell之引号嵌套引号大全

万恶的引号 这个能看懂你就出师了! 转载于:https://www.cnblogs.com/theodoric008/p/10000480.html

oracle表分区详解

oracle表分区详解 从以下几个方面来整理关于分区表的概念及操作: 表空间及分区表的概念表分区的具体作用表分区的优缺点表分区的几种类型及操作方法对表分区的维护性操作 1.表空间及分区表的概念 表空间: 是一个或多个数据文件的集合,所有的数据对象都存…

线性插值插值_揭秘插值搜索

线性插值插值搜索算法指南 (Searching Algorithm Guide) Prior to this article, I have written about Binary Search. Check it out if you haven’t seen it. In this article, we will be discussing Interpolation Search, which is an improvement of Binary Search when…

其他命令

keys *这个可以全部的值del name 这个可以删除某个127.0.0.1:6379> del s_set(integer) 1127.0.0.1:6379> keys z*(匹配)1) "z_set2"2) "z_set"127.0.0.1:6379> exists sex(integer) 0 127.0.0.1:6379> get a"3232…

建按月日自增分区表

一、建按月自增分区表: 1.1建表SQL> create table month_interval_partition_table (id number,time_col date) partition by range(time_col)2 interval (numtoyminterval(1,month))3 (4 partition p_month_1 values less than (to_date(2014-01-01,yyyy-mm…

#1123-JSP隐含对象

JSP 隐含对象 JSP隐含对象是JSP容器为每个页面提供的Java对象,开发者可以直接使用它们而不用显式声明。JSP隐含对象也被称为预定义变量。 JSP所支持的九大隐含对象: 对象,描述 request,HttpServletRequest类的实例 response&#…

按照时间,每天分区;按照数字,200000一个分区

按照时间,每天分区 create table test_p(id number,createtime date) partition by range(createtime) interval(numtodsinterval(1,day)) store in (users) ( partition test_p_p1 values less than(to_date(20140110,yyyymmdd)) ); create index index_test_p_id …

如果您不将Docker用于数据科学项目,那么您将生活在1985年

重点 (Top highlight)One of the hardest problems that new programmers face is understanding the concept of an ‘environment’. An environment is what you could say, the system that you code within. In principal it sounds easy, but later on in your career yo…

jmeter对oracle压力测试

下载Oracle的jdbc数据库驱动包,注意Oracle数据库的版本,这里使用的是:Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production; 一般数据库的驱动包文件在安装路径下:D:\oracle\product\10.2.…

集合里面的 E是泛型 暂且认为是object

集合里面的 E是泛型 暂且认为是object转载于:https://www.cnblogs.com/classmethond/p/10011374.html

docker部署flask_使用Docker,GCP Cloud Run和Flask部署Scikit-Learn NLP模型

docker部署flaskA brief guide to building an app to serve a natural language processing model, containerizing it and deploying it.构建用于服务自然语言处理模型,将其容器化和部署的应用程序的简要指南。 By: Edward Krueger and Douglas Franklin.作者&am…

异常处理的原则

1:函数内部如果抛出需要检测的异常,那么函数上必须要声明,否则必须在函数内用try catch捕捉,否则编译失败。2:如果调用到了声明异常的函数,要么try catch 要么throws,否则编译失败。3&#xff…