日韩无码专区无码一级三级片|91人人爱网站中日韩无码电影|厨房大战丰满熟妇|AV高清无码在线免费观看|另类AV日韩少妇熟女|中文日本大黄一级黄色片|色情在线视频免费|亚洲成人特黄a片|黄片wwwav色图欧美|欧亚乱色一区二区三区

RELATEED CONSULTING
相關咨詢
選擇下列產品馬上在線溝通
服務時間:8:30-17:00
你可能遇到了下面的問題
關閉右側工具欄

新聞中心

這里有您想知道的互聯網營銷解決方案
創(chuàng)新互聯Python教程:四個python小練習

四個python小練習:

創(chuàng)新互聯網站建設公司是一家服務多年做網站建設策劃設計制作的公司,為廣大用戶提供了網站設計、成都網站制作,成都網站設計,1元廣告,成都做網站選創(chuàng)新互聯,貼合企業(yè)需求,高性價比,滿足客戶不同層次的需求一站式服務歡迎致電。

1、打印出1-100之間的所有偶數

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、設計一個函數,在桌面上創(chuàng)建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)

文章題目:創(chuàng)新互聯Python教程:四個python小練習
網頁URL:http://www.5511xx.com/article/ccogjgh.html