if連續判斷*
"""
(1)年齡小於18,童工
(2)年齡18到65,合法員工
(3)年齡大於65,退休員工
"""age=
int(
input
('請輸入您的年齡:'))
if age <18:
yuangong_type=
'童工'
elif
(age>=18)
and(age<=65)
: yuangong_type=
'合法員工'
else
: yuangong_type =
'退休員工'
print
(f'您輸入的年齡為:,您的員工型別為:'
)#f格式化輸出,print函式中呼叫yuangong_type變數與age變數
簡單的if巢狀
"""
(1)先詢問有沒有錢
(2)有錢上車,沒錢不上
(3)判斷上車是否有座位
"""anwers1=
input
('上車前請付款\n'
)if anwers1==
"對不起,我沒錢"
:print
('朋友,沒錢跟著跑,跑快點!'
)elif anwers1==
'好的,錢給你!'
:print
('土豪請上車!'
) anwers2=
input
('服務員,有位置沒?\n'
)if anwers2==
'有位置,土豪裡邊請'
:print
('ok!'
)else
:print
('抱歉,我要下車!'
)else
:print
('說啥呢?聽不懂!'
)
簡單的while_else迴圈,此處學習了break與continue,while部分是迴圈體,當while非正常執行時執行else的條件;break是退出整個迴圈,continue是退出當前迴圈,當迴圈體執行continue時依舊是正常執行。
i=
0while i<5:
print
(f"媳婦,我錯了"
) i+=
1else
:print
('原諒'
)print
('------------------------------------------')i=
0while i<5:
if i==3:
break
print
("媳婦,我錯了"
) i+=
1else
:print
('原諒'
)print
('------------------------------------------')i=
0while i<5:
if i==3:
i +=
1continue
print
(f"媳婦,我錯了"
) i+=
1else
:print
('原諒'
)print
('------------------------------------------'
)
ci的一些基礎內容
第一部分 load view,model,database,helper,driver helpers輔助函式 system helpers 常用 url 常用 url,form,text,cookie,file 1.載入 this load helper name 2.檔名 eg url help...
關於CSS的一些基礎內容
最近用到了css,剛好學學。css cascading style sheet 中文名層疊樣式表,用於為html文件新增樣式控制,也是一種計算機語言。一 css語法 a css規則由選擇器和宣告組成,構造為selector,多個宣告之間用分號隔開。declaration又包含屬性property和值...
初學Linux需要掌握的一些基礎
linux基礎學習 命令列下的基礎知識 linux區分英文的大小寫。date 檢視時間 cal 檢視日曆 tab 熱鍵 可以自動補全命令名和檔名 ctrl c 熱鍵 可以中斷正在執行的程式和檔案 ctrl d 熱鍵 可以退出使用者登入 ps aux 檢視後台執行的程式資訊 shutdown 關機 r...