[ python ] 練習作業 - 2
阿新 • • 發佈:2018-11-09
1、寫函式,檢查獲取傳入列表或元組物件的所有奇數位索引對應的元素,並將其作為新列表返回給呼叫者。
lic = [0, 1, 2, 3, 4, 5] def func(l): return l[1::2] print(func(lic))
2、寫函式,判斷使用者傳入的物件(字串、列表、元組)長度是否大於5。
def func(s): if len(s) > 5: print('%s > 5' % s) elif len(s) <= 5: print('%s <= 5' % s)
3、寫函式,檢查傳入列表的長度,如果大於2,那麼僅保留前兩個長度的內容,並將新內容返回給呼叫者。
def func(n): return n[:2]
4、寫函式,計算傳入字串中【數字】、【字母】、【空格] 以及 【其他】的個數,並返回結果。
context = input('>>>') def func(arg): dic = {'數字':0, '字母':0, '空格':0, '其他':0} for i in arg: if i.isdigit(): dic['數字'] += 1 elif i.isalpha(): dic['字母'] += 1 elif i.isspace(): dic['空格'] += 1 else: dic['其他'] += 1 return dic print(func(context))
5、寫函式,檢查使用者傳入的物件(字串、列表、元組)的每一個元素是否含有空內容,並返回結果。
l = ['a', ' b', 'c ', 'hel lo', 1, 2, 3] def func(arg): for i in arg: i = str(i) if ' ' in i: print('%s 內有空格' % i) else: print(i) func(l)
6、寫函式,檢查傳入字典的每一個value的長度,如果大於2,那麼僅保留前兩個長度的內容,並將新內容返回給呼叫者。
dic = {1: 123, 'a': 'hello', 'b':['world', 'nice', 'bigbang']} def func(dic): for k, v in dic.items(): if not isinstance(v, (int, float, bool)): dic[k] = v[:2] return dic print(func(dic))
7、寫函式,接收兩個數字引數,返回比較大的那個數字。
print(max(1, 10))
8、寫函式,使用者傳入修改的檔名,與要修改的內容,執行函式,完成整個檔案的批量修改操作(進階)。
import os file_name = input('檔名:') be_modify = input('要修改的內容:') af_modify = input('要替換的內容:') def func(file, be_f, af_f): with open(file, 'r', encoding='utf-8') as read_f, open(file+'_new', 'w', encoding='utf-8') as write_f: for line in read_f: if be_f in line: new_line = line.replace(be_f, af_f) write_f.write(new_line) else: write_f.write(line) os.remove(file_name) os.rename(file_name + '_new', file_name) func(file_name, be_modify, af_modify)
9、寫一個函式完成三次登陸功能,再寫一個函式完成註冊功能
def regist(): while True: user = input('user:').strip() if not user: continue else: break pwd = input('pwd:').strip() dic = ('註冊賬號:{}, 密碼:{}'.format(user, pwd)) return dic # print(regist()) def login(): count = 1 while count < 4: username = input('username:') password = input('password:') if username == 'hkey' and password == '123': print('登入成功.') return else: print('登入失敗.') count += 1 login()