search
HomeBackend DevelopmentPython TutorialWe have compiled 12 essential Python functions. It is recommended to collect them.

We have compiled 12 essential Python functions. It is recommended to collect them.

Preface

Novices tend to get stuck when writing code, especially when they are exposed to a lot of functions and other knowledge. They often read the requirements after reading them. Later, I don’t know what method I should use to implement it. You may have the logic to implement it, but you have forgotten which function to use. This is actually because you have insufficient knowledge reserves. You can’t remember which function does what, and you are naturally confused. water.

In the past few days, I have specially compiled some commonly used functions in Python, from the most basic input and output functions to 12 sections such as regular expressions. There are a total of more than 100 commonly used functions, which is convenient for friends to quickly To memorize it, go through it quickly every day, and deepen it when you use it. Slowly you will get rid of the situation of being stuck in writing code.

Although when we learn programming by ourselves, we emphasize more on understanding and actually typing code, there are some things you must keep in mind, otherwise it will be difficult for you to write code. Of course, veterans have already memorized them. If novices want to develop quickly and easily, it is a good way to memorize frequently used functions.

1. Basic function

We have compiled 12 essential Python functions. It is recommended to collect them.

#Case: Convert floating point value to string and output the converted data type

f = 30.5
ff = str(f)
print(type(ff))
#输出结果为 class 'str'

2. Process control

We have compiled 12 essential Python functions. It is recommended to collect them.

#Case: Judge the score based on the score entered by the user. When it is less than 50 points, it will prompt "Your score is less than 50 points", when the score is 5059, it prompts "your score is around 60 points", 60 points or more is considered a pass, 8090 points is excellent, and more than 90 points is excellent.

s = int(input("请输入分数:"))
if 80 >= s >= 60:
 print("及格")
elif 80 < s <= 90:
 print("优秀")
elif 90 < s <= 100:
 print("非常优秀")
else:
 print("不及格")
 if s > 50:
 print("你的分数在60分左右")
 else:
 print("你的分数低于50分")

3. List

We have compiled 12 essential Python functions. It is recommended to collect them.

#Case: Determine whether the number 6 is in the list [1,2,2,3,6,4,5 ,6,8,9,78,564,456] and output its subscript.

l = [1,2,2,3,6,4,5,6,8,9,78,564,456]
n = l.index(6, 0, 9)
print(n)
#输出结果为4

4. Tuple

We have compiled 12 essential Python functions. It is recommended to collect them.

Case: Modify tuple

#取元组下标在1~4之间的3个数,转换成列表
t = (1,2,3,4,5)
print(t[1:4])
l = list(t)
print(l)
#在列表下标为2的位置插入1个6
l[2]=6
print(l)
#讲修改后的列表转换成元组并输出
t=tuple(l)
print(t)
#运行结果为:
(2, 3, 4)
[1, 2, 3, 4, 5]
[1, 2, 6, 4, 5]
(1, 2, 6, 4, 5)

5. Character String

We have compiled 12 essential Python functions. It is recommended to collect them.

Case: Use format() in three ways to output a string

Method 1: Use numbers to account Digit (subscript):

"{0} 嘿嘿".format("Python")
a=100
s = "{0}{1}{2} 嘿嘿"
s2 = s.format(a,"JAVA","C++")
print(s2)
#运行结果为:100JAVAC++ 嘿嘿

Method 2: Use {} placeholder:

a=100
s = "{}{}{} 嘿嘿"
s2 = s.format(a,"JAVA","C++","C# ")
print(s2)
#运行结果为:100JAVAC++ 嘿嘿

Method 3: Use letter placeholder:

s = "{a}{b}{c} 嘿嘿"
s2 = s.format(b="JAVA",a="C++",c="C# ")
print(s2)
#运行结果为:C++JAVAC#嘿嘿

6. Dictionary

We have compiled 12 essential Python functions. It is recommended to collect them.

Case: Find data in dictionary:

d = {"name": "小黑"}
print(d.get("name2", "没有查到"))
print(d.get("name"))
#运行结果为:
没有查到
小黑

7. Function

Function this The highlight of the block is more custom functions. There are not many commonly used built-in functions. The main ones are the following:

We have compiled 12 essential Python functions. It is recommended to collect them.

Case: In Define a local variable in the function, and the variable can still be called when exiting the function

def fun1():
 global b
 b=100
 print(b)
fun1()
print(b)
#运行结果为:
100
100

8. Processes and threads

We have compiled 12 essential Python functions. It is recommended to collect them.

Case:Inherit Thread class implementation:

#多线程的创建
class MyThread(threading.Thread):
 def __init__(self,name):
 super().__init__()
 self.name = name
 def run(self):
 #线程要做的事情
 for i in range(5):
 print(self.name)
 time.sleep(0.2)
#实例化子线程
t1 = MyThread("凉凉")
t2 = MyThread("最亲的人")
t1.start()
t2.start()

9. Modules and packages

We have compiled 12 essential Python functions. It is recommended to collect them.

Case: How to use packages 4 :

from my_package1 import my_module3
print(my_module3.a)
my_module3.fun4()

10. File operation

(1) Conventional file operation

We have compiled 12 essential Python functions. It is recommended to collect them.

About the conventional mode of file operation:

We have compiled 12 essential Python functions. It is recommended to collect them.

Object properties of file

We have compiled 12 essential Python functions. It is recommended to collect them.

file对象的方法

We have compiled 12 essential Python functions. It is recommended to collect them.

(2)OS模块

  •  关于文件的功能

We have compiled 12 essential Python functions. It is recommended to collect them.

  •  关于文件夹的功能

We have compiled 12 essential Python functions. It is recommended to collect them.

11. 修饰器/装饰器

We have compiled 12 essential Python functions. It is recommended to collect them.

案例:classmethod的用法举例:

class B:
 age = 10
 def __init__(self,name):
 self.name = name
 @classmethod
 def eat(cls): #普通函数
 print(cls.age)
 def sleep(self):
 print(self)
b = B("小贱人")
b.eat()
#运行结果为:10

12. 正则

We have compiled 12 essential Python functions. It is recommended to collect them.

案例:用split()函数分割一个字符串并转换成列表:

import re
s = "abcabcacc"
l = re.split("b",s)
print(l)
#运行结果为:['a', 'ca', 'cacc']

结语

这篇文章的目的,不是为了教大家怎么使用函数,而是为了快速、便捷地记住常用的函数名,所以没有把每个函数的用法都给大家举例,你只有记住了函数名字和它的作用之后,你才会有头绪,至于函数的用法,百度一下就出来,用了几次你就会了。

如果连函数名和它的用途都不知道,你要花的时间和精力就更多了,必然不如我们带着目的性地去查资料会更快些。

The above is the detailed content of We have compiled 12 essential Python functions. It is recommended to collect them.. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:51CTO.COM. If there is any infringement, please contact admin@php.cn delete
Python 文本终端 GUI 框架,太酷了Python 文本终端 GUI 框架,太酷了Apr 12, 2023 pm 12:52 PM

Curses首先出场的是 Curses[1]。CurseCurses 是一个能提供基于文本终端窗口功能的动态库,它可以: 使用整个屏幕 创建和管理一个窗口 使用 8 种不同的彩色 为程序提供鼠标支持 使用键盘上的功能键Curses 可以在任何遵循 ANSI/POSIX 标准的 Unix/Linux 系统上运行。Windows 上也可以运行,不过需要额外安装 windows-curses 库:pip install windows-curses 上面图片,就是一哥们用 Curses 写的 俄罗斯

五个方便好用的Python自动化脚本五个方便好用的Python自动化脚本Apr 11, 2023 pm 07:31 PM

相比大家都听过自动化生产线、自动化办公等词汇,在没有人工干预的情况下,机器可以自己完成各项任务,这大大提升了工作效率。编程世界里有各种各样的自动化脚本,来完成不同的任务。尤其Python非常适合编写自动化脚本,因为它语法简洁易懂,而且有丰富的第三方工具库。这次我们使用Python来实现几个自动化场景,或许可以用到你的工作中。1、自动化阅读网页新闻这个脚本能够实现从网页中抓取文本,然后自动化语音朗读,当你想听新闻的时候,这是个不错的选择。代码分为两大部分,第一通过爬虫抓取网页文本呢,第二通过阅读工

用Python写了个小工具,再复杂的文件夹,分分钟帮你整理!用Python写了个小工具,再复杂的文件夹,分分钟帮你整理!Apr 11, 2023 pm 08:19 PM

糟透了我承认我不是一个爱整理桌面的人,因为我觉得乱糟糟的桌面,反而容易找到文件。哈哈,可是最近桌面实在是太乱了,自己都看不下去了,几乎占满了整个屏幕。虽然一键整理桌面的软件很多,但是对于其他路径下的文件,我同样需要整理,于是我想到使用Python,完成这个需求。效果展示我一共为将文件分为9个大类,分别是图片、视频、音频、文档、压缩文件、常用格式、程序脚本、可执行程序和字体文件。# 不同文件组成的嵌套字典 file_dict = { '图片': ['jpg','png','gif','webp

用 WebAssembly 在浏览器中运行 Python用 WebAssembly 在浏览器中运行 PythonApr 11, 2023 pm 09:43 PM

长期以来,Python 社区一直在讨论如何使 Python 成为网页浏览器中流行的编程语言。然而网络浏览器实际上只支持一种编程语言:JavaScript。随着网络技术的发展,我们已经把越来越多的程序应用在网络上,如游戏、数据科学可视化以及音频和视频编辑软件。这意味着我们已经把繁重的计算带到了网络上——这并不是JavaScript的设计初衷。所有这些挑战提出了对新编程语言的需求,这种语言可以提供快速、可移植、紧凑和安全的代码执行。因此,主要的浏览器供应商致力于实现这个想法,并在2017年向世界推出

一文读懂层次聚类(Python代码)一文读懂层次聚类(Python代码)Apr 11, 2023 pm 09:13 PM

首先要说,聚类属于机器学习的无监督学习,而且也分很多种方法,比如大家熟知的有K-means。层次聚类也是聚类中的一种,也很常用。下面我先简单回顾一下K-means的基本原理,然后慢慢引出层次聚类的定义和分层步骤,这样更有助于大家理解。层次聚类和K-means有什么不同?K-means 工作原理可以简要概述为: 决定簇数(k) 从数据中随机选取 k 个点作为质心 将所有点分配到最近的聚类质心 计算新形成的簇的质心 重复步骤 3 和 4这是一个迭代过程,直到新形成的簇的质心不变,或者达到最大迭代次数

从头开始构建,DeepMind新论文用伪代码详解Transformer从头开始构建,DeepMind新论文用伪代码详解TransformerApr 09, 2023 pm 08:31 PM

2017 年 Transformer 横空出世,由谷歌在论文《Attention is all you need》中引入。这篇论文抛弃了以往深度学习任务里面使用到的 CNN 和 RNN。这一开创性的研究颠覆了以往序列建模和 RNN 划等号的思路,如今被广泛用于 NLP。大热的 GPT、BERT 等都是基于 Transformer 构建的。Transformer 自推出以来,研究者已经提出了许多变体。但大家对 Transformer 的描述似乎都是以口头形式、图形解释等方式介绍该架构。关于 Tra

提高Python代码可读性的五个基本技巧提高Python代码可读性的五个基本技巧Apr 11, 2023 pm 09:07 PM

译者 | 赵青窕审校 | 孙淑娟你是否经常回头看看6个月前写的代码,想知道这段代码底是怎么回事?或者从别人手上接手项目,并且不知道从哪里开始?这样的情况对开发者来说是比较常见的。Python中有许多方法可以帮助我们理解代码的内部工作方式,因此当您从头来看代码或者写代码时,应该会更容易地从停止的地方继续下去。在此我给大家举个例子,我们可能会得到如下图所示的代码。这还不是最糟糕的,但有一些事情需要我们去确认,例如:在load_las_file函数中f和d代表什么?为什么我们要在clay函数中检查结果

用 Python 实现导弹自动追踪,超燃!用 Python 实现导弹自动追踪,超燃!Apr 12, 2023 am 08:04 AM

大家好,我是J哥。这个没有点数学基础是很难算出来的。但是我们有了计算机就不一样了,依靠计算机极快速的运算速度,我们利用微分的思想,加上一点简单的三角学知识,就可以实现它。好,话不多说,我们来看看它的算法原理,看图:由于待会要用pygame演示,它的坐标系是y轴向下,所以这里我们也用y向下的坐标系。算法总的思想就是根据上图,把时间t分割成足够小的片段(比如1/1000,这个时间片越小越精确),每一个片段分别构造如上三角形,计算出导弹下一个时间片走的方向(即∠a)和走的路程(即vt=|AC|),这时

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)