%s=string 輸入字串就行
%d=dig只能輸入數字
%f=浮點數(大部分情況下理解成小數)
變數後面加.isdigit()
判斷是不是數字
exit()
exit的時候可以列印一句話,在()裡面。
name = input("name:")
age = int(input("age:"))
job = input("job:") #職業
salary = input("salary:") #薪水
if salary.isdigit(): #判斷輸入的是不是數字,如果是就:
salary=int(salary)
else: #如果不是:
exit("please enter a number")
msg="""
-----------------info of %s -----------
name:%s
age:%s
job:%s
salary:%s
you will be retired in %s years
-------------------end-------------------
"""%(name,name,age,job,salary,65-age)
print(msg)
day5 字串 函式
字串 1.單引號,雙引號,三引號括起來的都是字串 索引 從0開始 str 0 遍歷 for迴圈 判斷字串中是否都是數字 字母 返回bool型 string.isdecimal string.isalpha 字串替換 缺省會全部替換 string.replace old,new,次數 字串查詢 str...
day009 字串格式化
age 18name 小明 message name 今年 str age 歲 print message 小明今年18歲語法 包含格式佔位符的字串 資料1,資料2,資料3,注意 資料必須和佔位保持一致 當只需要乙個資料的時候,可以省略的 s 字串 任何型別的資料都可以使用 s佔位 d 整數 f 浮...
day1 字串格式化
1 import datetime 2 today datetime.datetime.today 當天的日期 3for i in range 3 4 username input 請輸入你的名字 5 welcome 歡迎 s 登入,今天的日期是 s username,today 6print we...