『%?』.%var
print
('%s吃了%d%s%s!'%(
'你',10,
'碗',
'公尺')
)'''
你吃了10碗公尺!
'''
『{}』.format(var)
print
('{}吃了{}{}{}!'
.format
('你',10
,'碗'
,'公尺'))
'''你吃了10碗公尺!
'''
f』』
print
( f'吃了!'
)'''
你吃了10碗公尺!
'''
附加說明**:
input(可選引數) 返回 -> str
可選引數說明:the prompt string, if given, is printed to standard output without a
trailing newline before reading input.
w =
input
('請輸入體重(kg):'
)print
(f'你的體重是kg'
)"""
請輸入體重(kg):500
你的體重是500kg
"""
輸入與輸出 格式化輸出
str 與repr 對於字串 兩方法作用結果有差異 對於列表,元組,字典等 兩方法輸出一致 s hello n print str s print repr s a 1,2,3,4 print str a print repr a 輸出 hello hello n 1,2,3,4 1,2,3,4 平...
python 日期輸出格式化
1.日期輸出格式化 所有日期 時間的api都在datetime模組內。1.datetime string now datetime.datetime.now now.strftime y m d h m s 輸出2012 03 05 16 26 23.870105 strftime是datetime...
Python基礎 輸出格式化
python版本 3.6.6 在python中,格式化輸出使用 實現。在字串內部,s表示用字串替換,d表示用整數替換,有幾個 佔位符,後面就跟幾個變數或者值,順序要對應好。如果只有乙個 括號可以省略。常見的佔位符有 佔位符替換內容 d在整數 f浮點數 s字串 x是十六進製制整數 字串輸出 print...