您好,登錄后才能下訂單哦!
小編給大家分享一下python有哪些小練習案例,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討方法吧!
四個python小練習:
1、打印出1-100之間的所有偶數
<pre class="brush:python;gutter:true;">def even_print(): for i in range(1,101): if i % 2 == 0: print (i) even_print() #列表解析式的方式: k = [n for n in range(1,101) if n%2 == 0] print (k)
2、設計一個函數,在桌面上創建10個文件,并以數字命名
def text_creation(): path = 'C:/Users/Administrator/Desktop' for name in range (1,11): with open(path + str(name) + '.txt','w') as text: text.write(str(name)) text.close() print ('done')text_creation()
3、復利計算函數
def invest(amount,rate,time): print('principal amount:{}'.format(amount)) for t in range(1,time + 1): amount = amount * (1 + rate) print ('year {}: ${}'.format(t,amount)) invest(100,.05,8) invest(2000,.025,5)
4、隨機驗證碼
import random checkcode = '' for i in range(4): current = random.randrange(0,4) if current != i: temp = chr(random.randint(65,90)) else: temp = random.randint(0,9) checkcode += str(temp) print (checkcode)
看完了這篇文章,相信你對python有哪些小練習案例有了一定的了解,想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。