Python小指令碼1
#!/usr/bin/python
# -*- coding: UTF-8 -*-
def account_login(account):
if account in Dict.keys():
tmp=Dict[account]
password=input("enter the password:")
if password in tmp.keys():
if tmp[password] == 0:
return 0
else:
return 3
else:
print('Error password:')
return 1
else:
return 2
def lock_account(account):
for k in Dict:
if k == account:
for subk in Dict[k]:
Dict[k][subk]=1
def try_times(account):
num=3
while num>0:
result=account_login(account)
if result == 1:
num=num-1
if num == 0:
lock_account(account)
print('The account %s is locked now!'%account)
exit()
elif result == 2:
print('no account')
exit()
elif result == 3:
print('The account was locked')
exit()
elif result == 0:
print('success login on the %s!'%account)
break
list1 = []
list2 = []
def check_intnumber(n):
if int(n) % 2 == 0:
return True
else:
return False
def append_list(arg_list):
global list1
global list2
for i in arg_list:
if check_intnumber(i) == True:
list1.append(i)
elif check_intnumber(i) == False:
list2.append(i)
def filit_number(arg):
arg_list = arg.split(',')
for i in arg_list:
if str.isdigit(i) == False:
arg_list.remove(i)
else:
pass
return arg_list
def main():
account=input("enter the accout:")
try_times(account)
arg = input('enter someting to check:')
arg_list = filit_number(arg)
append_list(arg_list)
print('odd number',list2)
print('even number',list1)
if __name__ == '__main__':
Dict = {'oracle': {'a123': 0}, 'root': {'b123': 0}, 'mysql': {'c123': 1}}
main()
## 新手小試牛刀,主要執行功能前需要使用者驗證,其中使用者字典裡面0表示正常 1表示使用者被鎖
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/30590361/viewspace-2138553/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Python指令碼典型報錯(1)Python指令碼
- 指令碼1指令碼
- 寫python指令碼遇到的些許小問題Python指令碼
- DBA指令碼 (1)指令碼
- MySQL批量轉換表名為小寫(Python指令碼)MySqlPython指令碼
- python 常用指令碼Python指令碼
- 分析 Python 指令碼Python指令碼
- 19、python 指令碼Python指令碼
- awk指令碼學習小結指令碼
- (1) Shell 指令碼簡介指令碼
- Python爬蟲指令碼Python爬蟲指令碼
- PYTHON測試指令碼Python指令碼
- Perl指令碼執行方法小結指令碼
- stap監控cpu指令碼小結指令碼
- weblogic指令碼工具WLST(1)Web指令碼
- 用Ant構建指令碼(1)指令碼
- 怎麼停止python指令碼Python指令碼
- Python指令碼秒換桌布Python指令碼
- Python指令碼練習一Python指令碼
- python效能測試指令碼Python指令碼
- crontab排程Python指令碼Python指令碼
- [Shell] 指令碼案例(1)--while,for,RANDOM,case指令碼Whilerandom
- shell指令碼學習筆記-1指令碼筆記
- [Oracle] rman備份的指令碼(1)Oracle指令碼
- 解剖Nginx·自動指令碼篇(1)解析配置選項指令碼 auto/optionsNginx指令碼
- Laravel 中執行 Python 指令碼LaravelPython指令碼
- Python——自動簽到指令碼Python指令碼
- python指令碼練習筆記Python指令碼筆記
- Python指令碼典型報錯(2)Python指令碼
- py指令碼得到Python的版本指令碼Python
- python指令碼後臺執行Python指令碼
- 使用pdb除錯python指令碼除錯Python指令碼
- python指令碼傳引數argvPython指令碼
- python版本DDOS攻擊指令碼Python指令碼
- Python訊息轟炸指令碼Python指令碼
- shell指令碼和python指令碼實現批量ping IP測試指令碼Python
- 從一個小程式指令碼看DB Time指令碼
- shell指令碼基本概念和命令小結指令碼