您好,登录后才能下订单哦!
本篇内容介绍了“简化Python代码的技巧有哪些”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!
你可以将单行代码视为压缩在一起的代码块,使其适合一行。它是只包含在一行中的简洁、有用的程序。
如果你并不喜欢写单行代码,或者你只是好奇为什么我们必须知道这些,那么下面是一些非常有说服力的理由。
理解 One-liners 将使你成为 Python 专家,因为你将更好地理解该语言。
这将帮助你更快地编写代码。你可以比其他人更快地编写一段代码,这将有助于你进行竞争性编程。
在线课程将提高你的基础知识和编程基础,因为它们会加强你的基础知识。
你将更多地以 Pythonic 方式编写代码。通常,来自不同语言的人经常在 Python 中以非 Python 的方式编写代码,例如他们不使用列表推导、多重赋值和切片等。
优化前
if 3 < 2: var=21 else: var=42
优化后
var = 21 if 3<2 else 42
优化前
>>> x = 42 >>> if x > 42: >>> print("no") >>> elif x == 42: >>> print("yes") >>> else: >>> print("maybe") yes
优化后
>>> print("no") if x > 42 else print("yes") if x == 42 else print("maybe") yes
优化前
condition = True if condition: print('hi')
优化后
if condition: print('hello') print('hello') if condition else None
优化前
def f(x): return "hello "+ x
优化后
f = lambda x: "hello "+ x f = exec("def f(x):\n return 'hello '+ x")
优化前
squares = [] for i in range(10): squares.append(i**2)
优化后
squares=[i**2 for i in range(10)]
优化前
squares = [] for i in range(10): if i%2==0: squares.append(i**2)
优化后
squares = [i**2 for i in range(10) if i%2==0]
优化前
squares = [] for i in range(10): if i%2==0: squares.append(i**2) else: squares.append(False)
优化后
squares = [i**2 if i%2==0 else False for i in range(10)]
优化前
c=0 while c < 10: if c!=5: print(c) else: print("FIVE") c+=1
优化后
while c < 10: c+=1; print(c) if c!=5 else print("FIVE")
优化前
>>> def swap(x,y): x = x ^ y y = x ^ y x = x ^ y return x, y >>> swap(10,20) (20,10)
优化后
>>> x, y = 10, 20 >>> x, y = y, x (20, 10)
优化前
a="ONE" b=2 c=3.001
优化后
a, b, c = "One", 2, 3.001
优化前
text = "Helllloooooo" fileName = "hello.txt" f=open(fileName, "a") f.write(text) f.close()
优化后
text = "Helllloooooo" fileName = "hello.txt" print(text, file=open(fileName, 'a'))
优化前
def partition(array, start, end): pivot = array[start] low = start + 1 high = end while True: while low <= high and array[high] >= pivot: high = high - 1 while low <= high and array[low] <= pivot: low = low + 1 if low <= high: array[low], array[high] = array[high], array[low] else: break array[start], array[high] = array[high], array[start] return high def quick_sort(array, start, end): if start >= end: return p = partition(array, start, end) quick_sort(array, start, p-1) quick_sort(array, p+1, end) array = [29,99,27,41,66,28,44,78,87,19,31,76,58,88,83,97,12,21,44] quick_sort(array, 0, len(array) - 1) print(array)
优化后
array = [29,99,27,41,66,28,44,78,87,19,31,76,58,88,83,97,12,21,44] q = lambda l: q([x for x in l[1:] if x <= l[0]]) + [l[0]] + q([x for x in l if x > l[0]]) if l else [] print(q(array))
优化前
def fib(x): if x <= 2: return 1 return fib(x - 1) + fib(x - 2)
优化后
fib=lambda x: x if x<=1 else fib(x-1) + fib(x-2)
优化前
import http.server import socketserver PORT = 8000 Handler = http.server.SimpleHTTPRequestHandler with socketserver.TCPServer(("", PORT), Handler) as httpd: print("serving at port", PORT) httpd.serve_forever()
优化后
python -m http.server 8000
优化前
iter1 = [1, 2, 3, 4] iter2 = ['a', 'b', 'c'] for x in iter1: for y in iter2: print(x, y)
优化后
[print(x, y) for x in iter1 for y in iter2]
优化前
for i in range(1,5): print(i, end=" ")
优化后
print(*range(1,5))
优化前
class School(): fun = {}
优化后
School = type('School', (object,), {'fun':{}})
优化前
command = input("> ") while command != "quit": print("You entered:", command)
优化后
while (command := input("> ")) != "quit": print("You entered:", command)
“简化Python代码的技巧有哪些”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注亿速云网站,小编将为大家输出更多高质量的实用文章!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。