Python的一些用法分享

來源:互聯網
上載者:User

1)Regex的使用。
複製代碼 代碼如下:#Regex的模組
import re
#Regex
rePattern = '.*[0-9]{4}'
pattern = re.compile(rePattern)
#匹配
if pattern.match(line):
return True
else:
return False

2)在函數中使用全域變數。 複製代碼 代碼如下:def func():
global num

3)python預設print輸出換行。
如果需要輸出時不換行,在最後加上逗號即可。 複製代碼 代碼如下:print 'Hello World!',

4)字串的切分。
  根據某個字串切分,使用split(),預設參數為空白字元,包括空格、斷行符號、定位字元等:
strList = strs.split('_')  
如果需要根據多個字串進行切分,可以使用Regex: 複製代碼 代碼如下:#根據空格和水平定位字元切分
strList = re.split("[\t\s]", strs)

5)判斷一個字串是否是數字。 複製代碼 代碼如下:if str.isdigit():
return True
else:
return False

6)檔案的讀寫 複製代碼 代碼如下:#讀檔案
fin = file('1.txt', 'r')
#寫檔案
fout = file('1_ans.txt', 'w')
while True:
line = fin.readline()
#檔案結尾
if len(line)==0:
break
fout.write(line)
fin.close()
fout.close()

7)列表的使用 複製代碼 代碼如下:ansList = []
#增加列表裡的值
ansList.append('Hello1')
ansList.append('Hello2')
#對列表進行排序
ansList.sort()
#遍曆輸出
for ans in ansList
print ans

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.