python初学者_面向初学者的20种重要的Python技巧

python初学者

Python is among the most widely used market programming languages in the world. This is because of a variety of driving factors:

Python是世界上使用最广泛的市场编程语言之一。 这是由于多种驱动因素:

  • It’s simple to understand.

    很容易理解。
  • It’s incredibly versatile.

    它的用途非常广泛。
  • It contains a broad collection of modules and libraries.

    它包含大量的模块和库。

The brevity and higher readability make it quite prominent among all developers.

简洁和更高的可读性使它在所有开发人员中都非常突出。

As a vital part of my job as a data scientist, I use Python every day. Along the way, I’ve gained a few amazing hacks. I’ve listed some of those below.

作为数据科学家工作的重要组成部分,我每天都使用Python。 一路上,我获得了一些惊人的技巧。 我在下面列出了其中一些。

20个必要的Python技巧 (20 Necessary Python Hacks)

1.交换值 (1. Swapping values)

Number swaps normally involve values storage in temporary variables. Yet we could do it by using a single line of code through this Python tip, with no transient variables.

数字交换通常涉及将值存储在临时变量中。 然而,我们可以通过使用此Python技巧中的单行代码来完成此操作,而无需使用瞬态变量。

2.列表中所有项目的一串 (2. One string of all items within a list)

When you have to convolve a string list, you could do this one after another through updating each item with the help of a for loop. It will, nevertheless, be cumbersome, particularly if the list has been lengthy. Within Python, strings are immutable. Thus, in each duo of concatenation, the left and right strings should be copied into a fresh string.

当您需要卷积字符串列表时,可以在for循环的帮助下通过更新每个项目来一个接一个地执行此操作。 但是,这将很麻烦,特别是如果清单很长的话。 在Python中,字符串是不可变的。 因此,在每个串联中,左字符串和右字符串应复制到新字符串中。

Using a join() function, as seen here, is a cleaner solution:

如此处所示,使用join()函数是一种更干净的解决方案:

p = ["Python", "is", "a", "popular", "language"] 
print(" ".join(p))output
Python is a popular language

3.列表中最常见的元素 (3. Most common element in the list)

Identify the most frequently occurring value in a list. If various items occur equally print one of them.

标识列表中最频繁出现的值。 如果各种项目均等出现,请打印其中一项。

Create a list set to remove the redundant values. So the maximum number of events of each item is found in the set, and then we consider the maximum.

创建一个列表集以删除冗余值。 因此,可以在集合中找到每个项目的最大事件数,然后考虑最大值。

list1 = [0, 1, 2, 3, 3, 2, 3, 1, 4, 5, 4] 
print(max(set(list1), key = list1.count))output
3

4.测试两个字符串是否是字谜 (4. Test if two strings are anagrams)

Solve the problems above to figure out whether two strings are anagrams. Given two strings string_1 and string_2, test if both the strings are anagrams of each other.

解决上述问题,找出两个字符串是否为字谜。 给定两个字符串string_1string_2 ,测试两个字符串是否彼此相同。

5.反转字符串 (5. Reverse a string)

Slicing is a handy tip in Python which can also be used to reverse the sequence of items within a string.

切片是Python中的一个方便技巧,它也可以用于反转字符串中的项目顺序。

6.反向列出 (6. Reverse a list)

A copy of the list is created from this approach, and as well, the list is not sorted in order. To create a copy, you need more room to hold all the existing elements.

列表的副本是通过这种方法创建的,并且列表也没有按顺序排序。 要创建副本,您需要更多空间来容纳所有现有元素。

7.转置矩阵 (7. Transpose a matrix)

Transposing a matrix means transforming columns to rows and vice versa. With Python, you can unzip a list that is a transpose of the matrix by using the following code with the zip function in combination with the * tool.

转置矩阵意味着将列转换为行,反之亦然。 使用Python,您可以将以下代码与zip函数结合使用,并结合使用*工具来解压缩作为矩阵转置的列表。

8.链式比较 (8. Chained comparison)

In programming, it is quite normal to test more than two conditions. Let’s assume that we need to test the following:

在编程中,测试两个以上的条件是很正常的。 假设我们需要测试以下内容:

p < q< r

There is indeed a smarter process of writing it with comparison chaining in Python. The operator chaining has been represented as below:

实际上,使用Python中的比较链来编写它确实有一个更聪明的过程。 操作员链表示如下:

if p< q< r:
{.....}

Comparisons return boolean values True or False.

比较返回布尔值TrueFalse

See the example below:

请参阅以下示例:

9.字典'get' (9. Dictionary ‘get’)

Below is a traditional way of accessing a value for a key in Python dictionaries.

以下是在Python词典中访问键值的传统方法。

dict = {"P":1, "Q":2} 
print(dict["P"])
print(dict["R"])

The concern is that the third line of the code yields a key error:

值得关注的是,代码的第三行产生了一个关键错误:

Traceback (most recent call last):
File ".\dict.py", line 3, in
print (dict["R"])
KeyError: 'R'

To prevent these cases, the get() function is used. This technique provides the value for a specific key when available in the dictionary. when it isn’t, None will be returned (if only one argument is used with get()).

为避免这些情况,使用了get()函数。 当在字典中可用时,此技术可提供特定键的值。 否则,将不返回None (如果只有一个参数与get())

10.按值对字典排序 (10. Sort dictionary by value)

Sorting has always been a useful utility in day-to-day programming. Dictionary in Python is widely used in many applications, ranging from the competitive domain to the developer domain.

排序一直是日常编程中的有用工具。 Python词典广泛用于从竞争领域到开发人员领域的许多应用程序中。

Construct a dictionary, as well as show all keys in alphabetical order. List both the alphabetically sorted keys and values by the value.

构造一个字典,并按字母顺序显示所有键。 列出按字母顺序排序的键和按值列出的值。

11.清单理解 (11. List comprehension)

To construct fresh lists from different iterables, list comprehensions are used. Since list comprehensions yield lists, they contain parentheses that include the expression which gets executed to every element. List comprehension is simpler, as the Python interpreter is designed to detect a recurring pattern in looping.

为了从不同的可迭代对象构造新的列表,使用列表推导。 由于列表推导产生列表,因此它们包含的括号包括对每个元素执行的表达式。 列表理解更简单,因为Python解释器旨在检测循环中的重复模式。

12.实施计划的一部分所花费的时间 (12. Time consumed to implement a part of the program)

This one focuses on showing how to compute the time taken by the program or a section of a program to execute. Calculating time helps to optimize your Python script to perform better.

本节重点介绍如何计算程序或程序的一部分执行所花费的时间。 计算时间有助于优化Python脚本以使其表现更好。

13.合并字典 (13. Merge dictionaries)

This is a trick in Python where a single expression is used to merge two dictionaries and store the result in a third dictionary. The single expression is **. This does not affect the other two dictionaries. ** implies that the argument is a dictionary. Using ** is a shortcut that allows you to pass multiple arguments to a function directly by using a dictionary.

这是Python中的一个技巧,其中单个表达式用于合并两个字典并将结果存储在第三个字典中。 单个表达式是** 。 这不会影响其他两个词典。 **表示该参数是字典。 使用**是一种快捷方式,它允许您通过使用字典将多个参数直接传递给函数。

Using this, we first pass all the elements of the first dictionary into the third one and then pass the second dictionary into the third. This will replace the duplicate keys of the first dictionary.

使用此方法,我们首先将第一个字典的所有元素传递给第三个字典,然后将第二个字典传递给第三个字典。 这将替换第一个字典的重复键。

14.数字化 (14. Digitize)

Here is the code that uses map(), list comprehension, and a simpler approach for digitizing.

这是使用map() ,列表理解和一种更简单的数字化方法的代码。

15.测试唯一性 (15. Test for uniqueness)

Some list operations require us to test when total items in the list are distinct. This usually happens when we try to perform the set operations in a list. Hence, this particular utility is essential at these times.

一些列表操作要求我们测试列表中的总项目何时不同。 当我们尝试在列表中执行设置操作时,通常会发生这种情况。 因此,此特定实用程序在这些时候至关重要。

16.使用枚举 (16. Using enumeration)

Using enumerators, finding an index is quick when you’re within a loop.

使用枚举器,当您处于循环中时,可以快速找到索引。

17.在一行中评估任意数字的阶乘 (17. Evaluate the factorial of any number in a single line)

This one gives you a method to find the factorial of a given number in one line.

这为您提供了一种在一行中查找给定数字的阶乘的方法。

18.返回几个函数的元素 (18. Return several functions’ elements)

This function is not offered by numerous computer languages. For Python, though, functions yield several elements.

许多计算机语言均未提供此功能。 但是,对于Python,函数产生几个元素。

Kindly review the following instance to understand how it performs.

请查看以下实例以了解其性能。

19.合并一个真实的Python switch-case语句 (19. Incorporate a true Python switch-case statement)

Below is the script used to replicate a switch-case structure with a dictionary.

下面是用于复制带有字典的切换案例结构的脚本。

20.使用splat运算符解包函数参数 (20. With splat operator unpacking function arguments)

The splat operator provides an efficient way of unpacking lists of arguments. For clarification, please go through the following illustration:

splat运算符提供了一种解压缩参数列表的有效方法。 为了澄清起见,请检查下图:

尾注 (The Ending Note)

I hope the aforementioned 20 necessary Python hacks will allow you to accomplish your Python jobs swiftly and effectively. You can further consider those or your assignments and programs.

我希望前面提到的20个必要的Python技巧可以使您快速有效地完成Python工作。 您可以进一步考虑这些或您的作业和程序。

Some I found while browsing the Python Standard Library docs. A few others I found searching through PyTricks.

我在浏览Python标准库文档时发现的一些。 我发现其他一些人通过PyTricks进行搜索。

If you think I should include more or have suggestions, please do comment below.

如果您认为我应该包括更多内容或有建议,请在下面做评论。

Thanks for reading!

谢谢阅读!

翻译自: https://medium.com/better-programming/20-valuable-and-essential-python-hacks-for-beginners-112954560aff

python初学者

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

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

相关文章

主串与模式串的匹配

主串与模式串的匹配 &#xff08;1&#xff09;BF算法&#xff1a; BF算法比较简单直观&#xff0c;其匹配原理是主串S.ch[i]和模式串T.ch[j]比较&#xff0c;若相等&#xff0c;则i和j分别指示串中的下一个位置&#xff0c;继续比较后续字符&#xff0c;若不相等&#xff0c;从…

什么是 DDoS 攻击?

欢迎访问网易云社区&#xff0c;了解更多网易技术产品运营经验。 全称Distributed Denial of Service&#xff0c;中文意思为“分布式拒绝服务”&#xff0c;就是利用大量合法的分布式服务器对目标发送请求&#xff0c;从而导致正常合法用户无法获得服务。通俗点讲就是利用网络…

nginx 并发过十万

一般来说nginx 配置文件中对优化比较有作用的为以下几项&#xff1a; worker_processes 8; nginx 进程数&#xff0c;建议按照cpu 数目来指定&#xff0c;一般为它的倍数。 worker_cpu_affinity 00000001 00000010 00000100 00001000 00010000 00100000 01000000 10000000; 为每…

贝叶斯网络建模

I am feeling sick. Fever. Cough. Stuffy nose. And it’s wintertime. Do I have the flu? Likely. Plus I have muscle pain. More likely.我感到恶心。 发热。 咳嗽。 鼻塞。 现在是冬天。 我有流感吗&#xff1f; 可能吧 另外我有肌肉疼痛。 更倾向于。 Bayesian networ…

长春南关区净月大街附近都有哪些课后班?

长春南关区净月大街附近都有哪些课后班&#xff1f;在学校的教育不能满足广大学生的需求的时候&#xff0c;一对一辅导、文化课辅导、高考辅导等越来越多的家长和孩子的选择。相对于学校的大课教育&#xff0c;一对一辅导有着自身独特的优势&#xff0c;一对一辅导有着学校教学…

dev中文本框等获取焦点事件

<ClientSideEvents GotFocus"GotFocus" /> editContract.SetFocus()//设置文本框等的焦点 function GotFocus(s, e) { window.top.DLG.show(700, 600, "PrePayment/ContractSelect.aspx", "选择", null ); }…

数据科学家数据分析师_使您的分析师和数据科学家在数据处理方面保持一致

数据科学家数据分析师According to a recent survey conducted by Dimensional Research, only 50 percent of data analysts’ time is actually spent analyzing data. What’s the other half spent on? Data cleanup — that tedious and repetitive work that must be do…

神经网络使用情景

神经网络使用情景 人脸&#xff0f;图像识别语音搜索文本到语音&#xff08;转录&#xff09;垃圾邮件筛选&#xff08;异常情况探测&#xff09;欺诈探测推荐系统&#xff08;客户关系管理、广告技术、避免用户流失&#xff09;回归分析 为何选择Deeplearning4j&#xff1f; …

BZOJ4890 Tjoi2017城市

显然删掉的边肯定是直径上的边。考虑枚举删哪一条。然后考虑怎么连。显然新边应该满足其两端点在各自树中作为根能使树深度最小。只要线性求出这个东西就可以了&#xff0c;这与求树的重心的过程类似。 #include<iostream> #include<cstdio> #include<cmath>…

【国际专场】laravel多用户平台(SaaS, 如淘宝多用户商城)的搭建策略

想不想用Laravel来搭建一个多用户、或多租户平台&#xff1f;比如像淘宝那样的多商户平台呢&#xff1f;听上去很复杂&#xff0c;不是吗&#xff1f;怎么能一个程序&#xff0c;给那么多的机构用户来用呢&#xff1f;如何协调管理它们呢&#xff1f;数据库怎么搭建呢&#xff…

GitHub常用命令及使用

GitHub使用介绍 摘要&#xff1a; 常用命令&#xff1a; git init 新建一个空的仓库git status 查看状态git add . 添加文件git commit -m 注释 提交添加的文件并备注说明git remote add origin gitgithub.com:jinzhaogit/git.git 连接远程仓库git push -u origin master 将本地…

神经网络的类型

KNN DNN SVM DL BP DBN RBF CNN RNN ANN 概述 本文主要介绍了当前常用的神经网络&#xff0c;这些神经网络主要有哪些用途&#xff0c;以及各种神经网络的优点和局限性。 1 BP神经网络 BP (Back Propagation)神经网络是一种神经网络学习算法。其由输入层、中间层、输出层组成的…

python db2查询_如何将DB2查询转换为python脚本

python db2查询Many companies are running common data analytics tasks using python scripts. They are asking employees to convert scripts that may currently exist in SAS or other toolsets to python. One step of this process is being able to pull in the same …

Dapper基础知识三

在下刚毕业工作&#xff0c;之前实习有用到Dapper&#xff1f;这几天新项目想用上Dapper&#xff0c;在下比较菜鸟&#xff0c;这块只是个人对Dapper的一种总结。 Dapper&#xff0c;当项目在开发的时候&#xff0c;在没有必要使用依赖注入的时候&#xff0c;如何做到对项目的快…

deeplearning4j

deeplearning4j 是基于java的深度学习库&#xff0c;当然&#xff0c;它有许多特点&#xff0c;但暂时还没学那么深入&#xff0c;所以就不做介绍了 需要学习dl4j&#xff0c;无从下手&#xff0c;就想着先看看官网的examples&#xff0c;于是&#xff0c;下载了examples程序&a…

PostgreSQL 11 1Kw TPCC , 1亿 TPCB 7*24 强压耐久测试

标签 PostgreSQL , tpcc , tpcb 背景 TPCC, TPCB是工业标准的OLTP类型业务的数据库测试&#xff0c;包含大量的读、写、更新、删除操作。 7*24小时强压耐久测试&#xff0c;主要看数据库在长时间最大压力下的 性能、稳定性、可靠性。 测试CASE &#xff1a; 1、1000万 tpcc 2、…

推理编程_答案集编程的知识表示和推理

推理编程Read about the difference between declarative and imperative programming and learn from code examples (Answer Set Programming, Python and C).了解声明式和命令式编程之间的区别&#xff0c;并从代码示例(答案集编程&#xff0c;Python和C)中学习。 介绍 (In…

给Hadoop初学者的一些建议

我们介绍了新手学习hadoop的入门注意事项。这篇来谈谈hadoop核心知识学习。 hadoop核心知识学习: hadoop分为hadoop1.X和hadoop2.X&#xff0c;并且还有hadoop生态系统。这里只能慢慢介绍了。一口也吃不成胖子。 那么下面我们以hadoop2.x为例进行详细介绍&#xff1a; Hadoop…

Guide AHOI2017 洛谷P3720

Description 农场主John最近在网上买了一辆新车&#xff0c;在购买汽车配件时&#xff0c;John不小心点了两次“提交”按钮。导致汽车上安装了两套GPS系统&#xff0c;更糟糕的是John在使用GPS导航时&#xff0c;两套系统常常给出不同的路线。从地图上看&#xff0c;John居住的…

稳坐视频云行业第一,阿里云将用边缘计算开辟新赛道

“CDN竞争的上半场已结束&#xff0c;中国视频云市场格局已定&#xff0c;边缘计算将成为下半场发展的新赛道。” 4月10日&#xff0c;阿里云视频云总经理、边缘计算负责人朱照远在第七届“亚太内容分发大会”暨CDN峰会表示。朱照远认为&#xff0c;阿里云依靠齐全的产品矩阵、…