交換變數
x = 6
y = 5
x, y = y, x
print x
>>> 5
print y
>>> 6
if 語句在行內
print "hello" if true else "world"
>>> hello
連線下面的最後一種方式在繫結兩個不同型別的物件時顯得很co
nfc = ["packers", "49ers"]
afc = ["r**ens", "patriots"]
print nfc + afc
>>> ['packers', '49ers', 'r**ens', 'patriots']
print str(1) + " world"
>>> 1 world
print `1` + " world"
>>> 1 world
print 1, "world"
>>> 1 world
print nfc, 1
>>> ['packers', '49ers'] 1
數字技巧
#除后向下取整
print 5.0//2
>>> 2
# 2的5次方
print 2**5
>> 32
注意浮點數的除法
print .3/.1
>>> 2.9999999999999996
print .3//.1
>>> 2.0
數值比較
這是我見過諸多語言中很少有的如此棒的簡便法
x = 2
if 3 > x > 1:
print x
>>> 2
if 1 < x > 0:
print x
>>> 2
同時迭代兩個列表
nfc = ["packers", "49ers"]
afc = ["r**ens", "patriots"]
for teama, teamb in zip(nfc, afc):
print teama + " vs. " + teamb
>>> packers vs. r**ens
>>&gqbmcecqcxt; 49ers vs. patriots
帶索引的列表迭代
teams = ["packers", "49ers", "r**ens", "patriots"]
for index, team in enumerate(teams):
print index, team
>>> 0 p程式設計客棧ackers
>>> 1 49ers
>>> 2 r**ens
>>> 3 patriots
列表推導式
已知乙個列表,我們可以刷選出偶數列表方法
numbers = [1,2,3,4,5,6]
even =
for number in numbers:
if number%2 == 0:
even.append(number)
轉變成如下:
numbers = [1,2,3,4,5,6]
even = [number for number in numbers if number%2 == 0]
是不是很牛呢,哈哈。
字典推導
和列表推導類似,字典可以做同樣的工作www.cppcns.com:
teams = ["packers", "49ers", "r**ens", "patriots"]
>>>
初始化列表的值
items = [0]*3
print items
>>> [0,0,0]
列表轉換為字串
teams = ["packers", "49ers", "r**ens", "patriots"]
print ", ".join(teams)
>>> 'packers, 49ers, r**ens, patriots'
從字典中獲取元素
我承認try/except**並**致,不過這裡有一種簡單方法,嘗試在字典中查詢key,如果沒有找到對應的alue將用第二個引數設為其變數值。
data =
try:
is_admin = 程式設計客棧data['admin']
except keyerror:
is_admin = false
替換誠這樣:
data =
is_admin = data.get('admin', false)
獲取列表的子集
有時,你只需要列表中的部分元素,這裡是一些獲取列表子集的方法。
x = [1,2,3,4,5,6]
#前3個
print x[:3]
>>> [1,2,3]
#中間4個
print x[1:5]
>>> [2,3,4,5]
#最後3個
print x[-3:]
>>> [4,5,6]
#奇數項
print x[::2]
>>> [1,3,5]
#偶數項
print x[1::2]
>>> [2,4,6]
60個字元解決fizzbuzz
前段時間jeff atwood 推廣了乙個簡單的程式設計練習叫fizzbuzz,問題引用如下:
寫乙個程式,列印數字1到100,3的倍數列印「fizz」來替換這個數,5的倍數列印「buzz」,對於既是3的倍數又是5的倍數的數字列印「fizzbuzz」。
這裡就是乙個簡短的,有意思的方法解決這個問題:
for x in range(101):print"fizz"[x%3*4::]+"buwww.cppcns.comzz"[x%5*4::]or x
集合除了python內建的資料型別外,在collection模組同樣還包括一些特別的用例,在有些場合counter非常實用。如果你參加過在這一年的facebook hackercup,你甚至也能找到他的實用之處。
from collections import counter
print counter("hello")
>>> counter()
迭代工具
和collections庫一樣,還有乙個庫叫itertools,對某些問題真能高效地解決。其中乙個用例是查詢所有組合,他能告訴你在乙個組中元素的所有不能的組合方式
from itertools import combinations
teams = ["packers", "49ers", "r**ens", "patriots"]
for game in combinations(teams, 2):
print game
>>> ('packers', '49ers')
>>> ('packers', 'r**ens')
>>> ('packers', 'patriots')
>>> ('49ers', 'r**ens')
>>> ('49ers', 'patriots')
>>> ('r**ens', 'patriots')
false == true
比起實用技術來說這是乙個很有趣的事,在python中,true和false是全域性變數,因此
false = true if false: print "hello" else: print "world" >>> hello
總結本文標題: 適合python初學者的一些程式設計技巧
本文位址:
整理一些常用的命令(適合初學者)
inux中tail命令 用於檢視檔案內容 最基本的是cat more和less。1.如果你只想看檔案的前5行,可以使用head命令,如 head 5 etc passwd 2.如果你想檢視檔案的後10行,可以使用tail命令,如 tail 2 etc passwd 或 tail n 2 etc pa...
給python初學者的一些建議
安裝anaconda python並配好路徑 安裝vscode,安裝python外掛程式 plance外掛程式 jupyter外掛程式等 嘗試conda 建立虛擬環境,一般在虛擬環境中操作 在學習語法 做實驗的時候,建議先通過notebook來嘗試 可以先看廖雪峰的教程 一開始先看到物件導向就行,感...
適合初學者的python實際例子
最近在github上發現了乙個有意思的專案,很適合初學者學習python 學習一門語言剛開始的時候是很枯燥的,各種概念語法以及無聊的列印都會讓人失去更進一步學習的動力。很多同學在學習了一段時間之後甚至會懷疑學習語言的用處,因為總是寫不出東西,只會寫一些簡單的列印 這個叫做geekcomputers ...