Python 語言實現功能直接了當,簡明扼要,今天咱們就來一起看看 Python 5 行代碼的神奇操作! 1、古典兔子問題 很多人學習python,不知道從何學起。很多人學習python,掌握了基本語法過後,不知道在哪裡尋找案例上手。很多已經做案例的人,卻不知道如何去學習更加高深的知識。那麼針對這三 ...
Python 語言實現功能直接了當,簡明扼要,今天咱們就來一起看看 Python 5 行代碼的神奇操作!
1、古典兔子問題
很多人學習python,不知道從何學起。
很多人學習python,掌握了基本語法過後,不知道在哪裡尋找案例上手。
很多已經做案例的人,卻不知道如何去學習更加高深的知識。
那麼針對這三類人,我給大家提供一個好的學習平臺,免費領取視頻教程,電子書籍,以及課程的源代碼!
QQ群:1097524789
有一對兔子,從出生後第3個月起每個月都生一對兔子,小兔子長到第三個月後每個月又生一對兔子,假如兔子都不死,問每個月的兔子總數為多少?
def count(n):
if (1 == n or 2 == n):
return 1
elif (n >= 2):
return count(n - 2) + count(n - 1)
print(count(36) * 2)
2、加法計算器
num1 = input("第一個數:")
num2 = input("第二個數:")
new_num1 = int(num1)
new_num2 = int(num2)
print(new_num1 + new_num2)
3、迴圈問答
while(True):
question = input()
answer = question.replace('嗎', '呢')
answer = answer.replace('?', '!')
print(answer)
輸出:
在嗎 在呢 吃飯了嗎 吃飯了呢 要下班了嗎 要下班了呢 最近好嗎 最近好呢
4、實現一個簡單的伺服器
from http import server
from http.server import SimpleHTTPRequestHandler
server_address = ('127.0.0.1', 8888)
httpd = server.HTTPServer(server_address, SimpleHTTPRequestHandler)
httpd.serve_forever()
5、九九乘法表1
for i in range(1, 10):
for j in range(1, i+1):
print('{}x{}={}\t'.format(j, i, i*j), end='')
print()
輸出:
1x1=1
1x2=2 2x2=4
1x3=3 2x3=6 3x3=9
1x4=4 2x4=8 3x4=12 4x4=16
1x5=5 2x5=10 3x5=15 4x5=20 5x5=25
1x6=6 2x6=12 3x6=18 4x6=24 5x6=30 6x6=36
1x7=7 2x7=14 3x7=21 4x7=28 5x7=35 6x7=42 7x7=49
1x8=8 2x8=16 3x8=24 4x8=32 5x8=40 6x8=48 7x8=56 8x8=64
1x9=9 2x9=18 3x9=27 4x9=36 5x9=45 6x9=54 7x9=63 8x9=72 9x9=81
6、九九乘法表2
for i in range(1, 10):
for j in range(i, 10):
print(f'{i}x{j}={i*j}',end='\t')
print(" ")
print("\n")
輸出:
1x1=1 1x2=2 1x3=3 1x4=4 1x5=5 1x6=6 1x7=7 1x8=8 1x9=9
2x2=4 2x3=6 2x4=8 2x5=10 2x6=12 2x7=14 2x8=16 2x9=18
3x3=9 3x4=12 3x5=15 3x6=18 3x7=21 3x8=24 3x9=27
4x4=16 4x5=20 4x6=24 4x7=28 4x8=32 4x9=36
5x5=25 5x6=30 5x7=35 5x8=40 5x9=45
6x6=36 6x7=42 6x8=48 6x9=54
7x7=49 7x8=56 7x9=63
8x8=64 8x9=72
9x9=81
7、逆序列印數字
給一個不多於5位的正整數,逆序列印出各位數字,實現思路如下:
def nixu(n):
l = str(n)
l_str = l[::-1]
print("逆序:%s" % ( l_str))
nixu(2020)
輸出:
逆序:0202
8、生成詞雲
from wordcloud import WordCloud
import PIL.Image as image
with open('wordcloud.txt') as fp:
text = fp.read()
wordcloud = WordCloud().generate(text)
img = wordcloud.to_image()
img.show()
9、快速生成二維碼
以百度為例,生成二維碼
from MyQR import myqr
myqr.run(
words='https://www.baidu.com/',
colorized=True,
save_name='baidu_code.png')
10、實現批量摳圖
摳圖具體教程詳見 Python裝逼指南–五行代碼實現批量摳圖
import os, paddlehub as hub
huseg = hub.Module(name='deeplabv3p_xception65_humanseg') # 載入模型
path = './imgs/' # 文件目錄
files = [path + i for i in os.listdir(path)] # 獲取文件列表
results = huseg.segmentation(data={'image': files}) # 摳圖
總結
今天文章安利一些小技巧,希望對大家有一定的幫助,繼續向前吧!