Python 語言實現功能直接了當,簡明扼要,今天我們就來一塊兒看看 Python 5 行代碼的神奇操做!python
不少人學習python,不知道從何學起。
不少人學習python,掌握了基本語法事後,不知道在哪裏尋找案例上手。
不少已經作案例的人,殊不知道如何去學習更加高深的知識。
那麼針對這三類人,我給你們提供一個好的學習平臺,免費領取視頻教程,電子書籍,以及課程的源代碼!
QQ羣:1097524789服務器
有一對兔子,從出生後第3個月起每月都生一對兔子,小兔子長到第三個月後每月又生一對兔子,假如兔子都不死,問每月的兔子總數爲多少?less
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)
num1 = input("第一個數:")
num2 = input("第二個數:") new_num1 = int(num1) new_num2 = int(num2) print(new_num1 + new_num2)
while(True): question = input() answer = question.replace('嗎', '呢') answer = answer.replace('?', '!') print(answer)
在嗎 在呢 吃飯了嗎 吃飯了呢 要下班了嗎 要下班了呢 最近好嗎 最近好呢
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()
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
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
給一個很少於5位的正整數,逆序打印出各位數字,實現思路以下:學習
def nixu(n): l = str(n) l_str = l[::-1] print("逆序:%s" % ( l_str)) nixu(2020)
逆序:0202
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()
以百度爲例,生成二維碼ui
from MyQR import myqr myqr.run( words='https://www.baidu.com/', colorized=True, save_name='baidu_code.png')
摳圖具體教程詳見 Python裝逼指南–五行代碼實現批量摳圖lua
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}) # 摳圖
今天文章安利一些小技巧,但願對你們有必定的幫助,繼續向前吧!spa