1import
datetime
2 today = datetime.datetime.today()#
當天的日期
3for i in range(3):
4 username = input("
請輸入你的名字:")
5 welcome = '
歡迎 【%s】 登入,今天的日期是 %s
' %(username,today)
6print(welcome)
1import
datetime
2 today = datetime.datetime.today()#
當天的日期
3for i in range(3):
4 username = input("
請輸入你的名字:")
5 age = int(input("
請輸入你的年齡:"))
6 score = float(input("
請輸入你的成績"))
7#welcome = '歡迎 【%s】 登入,今天的日期是 %s' % (username,today)
8 welcome = '
歡迎 【%s】 登入,年齡是 %d,成績是 %.2f
' %(username,age,score)
9print(welcome)
Day1 字串格式化
1.佔位符方式 佔位符 d 整數 012d 數字位數至少長度為12位,不足的前面加0填充。hello,s,012d a 1234567890123456 hello,a,1234567890123456 hello,s,012d a 123 hello,a,000000000123 f 浮點數 4f...
day009 字串格式化
age 18name 小明 message name 今年 str age 歲 print message 小明今年18歲語法 包含格式佔位符的字串 資料1,資料2,資料3,注意 資料必須和佔位保持一致 當只需要乙個資料的時候,可以省略的 s 字串 任何型別的資料都可以使用 s佔位 d 整數 f 浮...
Python(1) 字串格式化
1。1 字串的格式化 顧名思義 就是讓字串按照自己想要的格式呈現 在python中內建了對字串進行格式化的操作的格式符 也可以看做是佔位符,為真實值預留位置和規定格式。如下面的例子 字串格式 a 3.456 print 7.3f a print 7.3f a 輸出結果 3.456 3.456這裡第乙...