print(『hello word』) 列印hello word
name =
'字串'
int=
1boo =true
username =
input
("username:"
) 輸入
print
(username)
info=
'''--
----
----
--info
----
--'''.
format
(__username=username)
print
(info)
_username=
'name'
_password=
'123456'
if _username==username and _password==password:
print
("登入成功"
)else
:print
("登入失敗"
)
age =
"58"
input_age=
input
("age:"
)if age==input_age:
print
("猜對了"
)elif input_age < age:
print
("猜小了"
)else
:print
("猜大了"
)
count=
0while count<3:
count =count+
1print
(count)
# 猜數字遊戲迴圈
while count<3:
age =
"58"
input_age =
input
("age:"
)if age == input_age:
print
("猜對了"
)break
elif input_age < age:
print
("猜小了"
)else
:print
("猜大了"
) count +=
1else
:print
("嘗試次數只有3次"
)
for i in range(10
):print
(i)for i in range(3
):age =
"58"
input_age =
input
("age:"
)if age == input_age:
print
("猜對了"
)break
elif input_age < age:
print
("猜小了"
)else
:print
("猜大了"
)else
:print
("嘗試次數只有3次"
)# 列印 0
-9 偶數
for i in range(0
,10,2
):print
(i)# 跳出本次迴圈 還會執行下次迴圈 continue
1.輸入使用者名稱 密碼
2.認證成功後顯示歡迎資訊
3.輸出三次後鎖定
1.**選單
2.可依次選擇進入各子選單
3.所需知識點:列表 字典
python第一周心得 Python第一周總結
變數 不能為系統自帶的內建函式,如def,help,sum等等 變數不能已下劃線數字來開頭,對大小寫敏感 變數後直接接數字,則被賦值為整型,如何加引號則賦值型別為字串str型別 a 1 整型 int b 2 字串 str 用print 直接輸出 a hello print a 在 使用者想要同時輸出...
Python第一周總結
import this命令可以輸出它的具體內容,在初學python時可以讓我們對python這門語言的特性有乙個大體的了解,對今後的程式設計提供了很大的幫助 定義乙個python變數可以使用數字 字母 下劃線數字不能開頭,不能使用特殊字元和空格,變數的型別有整形 浮點型 字串型分別對應int flo...
Python之路 第一周
python基本資料型別 整型 int 浮點型 float 字串型別 str 整數 int python中整型資料型別只有一種,不管值的大小 位數可以說是任意的 如 0 1 55 99999999 int型別的資料可以進行常規的數值運算。浮點型 float python中浮點型資料型別也只有一種,不...