day01 課後作業

2022-09-03 15:54:23 字數 712 閱讀 8632

#1、寫乙個登陸的程式,最多登陸失敗3次

#2、輸入賬號 密碼,如果登入成功,程式結束,提示 歡迎 xx 登入,今天的日期是 xx

#3、登入失敗,重新登陸

#3、要判斷輸入是否為空,什麼也不輸入,輸入空格都算算空

import datetime

username = '林俊傑'

passwd = 123456

shijian = datetime.datetime.today()

for cishu in range(3):

username1 = raw_input("請輸入使用者名稱:")

passwd1 = raw_input("請輸入密碼:")

if username1 == username and passwd == passwd:

print ('歡迎%s登入成功,今天的日期是%s'%(username1,shijian))

break

elif len(username1)==0 or len(passwd1)== 0:

print ('使用者名稱和密碼不能為空,請重新輸入')

elif username1.isspace() or passwd1.isspace():

print ('使用者名稱和密碼不能為空,請重新輸入')

else:

print('【登入失敗】密碼或使用者名稱不一致,請重新輸入')

day 11課後作業

coding utf 8 time 2019 1 3 20 03 author endless cloud site file day 11 課後作業.py software pycharm 2.寫函式,接收兩個數字引數,將較小的數字返回.c lambda x,y x if x y else y p...

11 02課後作業

charset utf 8 課程表title div style head border 2 bordercolor blue 課程表caption 專案th colspan 5 上課th colspan 2 休息th tr 星期td 星期一td 星期二td 星期三td 星期四td 星期五td 星期...

課後作業 day34

1.檢視崗位是teacher的員工姓名 年齡 select name,age from staff t where station teacher 2.檢視崗位是teacher且年齡大於30歲的員工姓名 年齡 select name,age from staff t where station te...