Python重要提示和技巧

Python重要提示和技巧

对于所有Python开发人员或任何其他语言开发人员来说,了解我们正在学习的编程语言的技巧和技巧总是令人着迷的。正如我们都知道的,Python是开发人员中最受欢迎的编程语言之一。因此,在本教程中,我们提供了每个Python开发人员都应该知道的Python的基本提示和技巧。

Python的10个基本提示和技巧

我们要讨论的Python技巧或技巧将帮助我们避免编写许多行代码,并节省大量时间。这些Python提示和技巧也将帮助我们提升编码能力,并在与其他程序员竞争时得到提升。

以下是每个Python开发人员都应该知道的十个重要Python提示和技巧的列表:

1. 从列表元素创建单个字符串

我们可以通过在print语句中使用带有列表变量的 join()函数 和”.”来简单地从给定列表的所有元素创建单个字符串。因此,通过这种方式,我们可以很容易地从以列表格式给出的多个数据元素中获得单个字符串数据格式。

示例:

# Given data elements in list format
GivenList = ["Hello", "Python", "Developers!", "Welcome", "to", "JavaTpoint"] 
# printing single string using "." With join() function
print(" ".join(GivenList)) 

输出:

Hello Python Developers! Welcome to JavaTpoint

2. Python使用枚举

在Python中,我们可以简单地使用枚举来检查给定函数内变量的出现次数及其第一次出现的位置。我们只需在print语句中使用函数名和”.”运算符来打印该变量在函数内第一次出现的次数。

示例:

# define a class for Enums
class EnumExample: 
    Hello, Python, Developers, Welcome, to, JavaTpoint, tutorial, of, Python = range(9)
# printing first number of occurrences of the given variable
print("Occurrence of JavaTpoint: ", EnumExample.JavaTpoint) 
print("Occurrence of Hello: ", EnumExample.Hello) 
print("Occurrence of Python: ", EnumExample.Python)
print("Occurrence of Welcome: ", EnumExample.Welcome)

输出:

Occurrence of JavaTpoint:  5
Occurrence of Hello:  0
Occurrence of Python:  8
Occurrence of Welcome:  3

3. 打印已导入模块的路径

如果我们需要在程序中打印导入的Python模块的文件目录或路径,那么我们只需要简单地在print语句中使用模块名,文件目录将被打印在输出中。

示例: 看以下Python程序:

# Importing modules in the program
import socket
import numpy
import os
# Printing the file directory of module imported in program
print(socket)
print(numpy)
print(os)

输出:

<module 'socket' from 'C:\\Users\\Manish\\lib\\socket.py'>
<module 'numpy' from 'C:\\Users\\Manish\\lib\\site-packages\\numpy\\__init__.py'>
<module 'os' from 'C:\\Users\\Manish\\lib\\os.py'>

4. 打印列表中出现最多的元素

我们给定了一个列表,其中包含多个元素,其中有许多元素重复超过一次。现在,如果我们想要打印在列表中出现最多的元素的数量,并且它与从给定的数字数据中找到的统计模式相同。我们使用max()和count函数来获取最多出现的元素的结果。

示例:

# A list with the number of elements in it
GivenList = [24, 21, 27, 29, 17, 23, 29, 34, 67, 23, 21, 29, 19, 63, 29, 27, 35, 21, 29]
# Printing most occurred number or element in list
print("Most occurred element in the given list: ", max(set(GivenList), key = GivenList.count)) 

输出:

Most occurred element in the given list:  29

5. 打印给定字符串多次

我们可以通过在打印语句中使用“字符串名 * n”的语法来简单地将给定字符串打印多次。它会连续地打印给定的字符串n次。

示例:

# Define a string and n number
GivenString = "Welcome to JavaTpoint, Python developers!"
n = 4
# Printing string multiple times
print("Given string for n number of times: ")
print(GivenString * n)

输出:

Given string for n number of times: 
Welcome to JavaTpoint, Python developers!Welcome to JavaTpoint, Python developers!Welcome to JavaTpoint, Python developers!Welcome to JavaTpoint, Python developers!

6. 交换两个变量的数字

我们也可以就地交换两个变量的数字,这样我们可以在程序中使用它们交换后的值。

示例: 看一下以下的Python程序:

# Define two number variables
m = 24
n = 26
print("m before swapping: ", m)
print("n before swapping: ", n)
# In-place swapping variables
m, n = n, m
print("m after swapping: ", m)
print("n after swapping: ", n)

输出:

m before swapping:  24
n before swapping:  26
m after swapping:  26
n after swapping:  24

7. 使用比较运算符链

我们可以使用比较运算符链来将给定的变量数字与多个值进行单个比较。

示例:

# Defining a number variable
num = 31
# Chaining comparison operators on num variable
Result1 = 35 > num > 30
Result2 = 17 > num < 35
# Printing result of comparison
print(Result1)
print(Result2)

输出:

True
False

8. 反转给定的字符串

有时候我们会有一个给定的字符串变量,而我们可能需要打印或使用该字符串的反向顺序。因此,我们应该了解打印给定字符串的反向格式的最简单方法。

示例: 看以下Python程序:

# Define a string variable
GivenString = "Welcome to JavaTpoint Python Developers!"
print("Given String in program: ", GivenString)
# Printing reverse of string in the output
print("Reverse of Given string in program is: ", GivenString[::-1])

输出:

Given string in program:  Welcome to JavaTpoint Python Developers!
Reverse of Given string in program is: !srepoleveD nohtyP tniopTavaJ to emocleW

9. 从一个函数中返回多个值

我们可以通过使用一个print语句,直接从给定的单个函数中打印出多个值或元素。这将为我们节省很多在程序中编写多行代码的时间。

示例:

# Define a default functions
def multival(): 
    return 24, 25, 31, 43, 37, 29, 39, 23
# Defining multiple values from multival() function
j, k, l, m, n, o, p, q = multival()
# Printing multiple values in single statement
print(j, k, l, m, n, o, p, q)

输出:

24 25 31 43 37 29 39 23

10. 检查变位词

变位词是指两个不同单词中所有字母相同,但字母在单词中的顺序不同。我们可以检查给定的两个单词是否是一对变位词。

我们可以通过以下两种方法来检查变位词:

a. 在程序中不使用外部模块:

看下面的Python程序示例:

# A default function to check anagram word logic
def CheckAnagram(mkr1, mkr2):  
    return sorted(mkr1) == sorted(mkr2) # logic
# Checking anagram words with default function
print("Words are anagrams: ", CheckAnagram('Python', 'yPotnh')) 
print("Words are anagrams: ", CheckAnagram('JavaTpoint', 'poijTtavaG'))

输出:

Words are anagrams:  True
Words are anagrams:  False

b. 通过在程序中导入外部模块:

# Importing counter from collection module
from collections import Counter
# A default function to check anagram word logic
def CheckAnagram(mkr1, mkr2):  
    return Counter(mkr1) == Counter(mkr2)  # logic
# Checking anagram words with default function
print("Words are anagrams: ", CheckAnagram('Python', 'yPotnh')) 
print("Words are anagrams: ", CheckAnagram('JavaTpoint', 'poijTtavaG'))

输出:

Words are anagrams:  True
Words are anagrams:  False

Camera课程

Python教程

Java教程

Web教程

数据库教程

图形图像教程

办公软件教程

Linux教程

计算机教程

大数据教程

开发工具教程