python學習日記(5)

2021-08-02 07:38:39 字數 1339 閱讀 7313

格式限定

可作為閉包使用

print(', '.format('python', '學習日記'))

print('{}, {}'.format('python', '學習日記'))

print(', , '.format('python', '學習日記'))

print(', '.format(language = 'python', dairy = '學習日記'))

article = ['python', '學習日記']

print(', '.format(article))

class

article:

def__init__

(self, language, dairy):

self.language, self.dairy = language, dairy

def__str__

(self):

return

'this article is ,'.format(self = self)

print(str(article('python', '學習日記')))

print(''.format(12))
%顯示百分數

e顯示指數記法

format_spec 的格式

format_spec

[[fill]align][sign][#][0][width][,][.precision][type]

fill

任意字元

align

」」 , 「=」 , 「^」

sign

」+」 , 「-」 , 」 「

width

整型precision

整型type

」b」 , 「c」 , 「d」 , 「e」 , 「e」 , 「f」 , 「f」 , 「g」 , 「g」 , 「n」 , 「o」 , 「s」 , 「x」 , 「x」 例如

print(''.format(199992))
f = 'hello  i am '.format

print(f('kevin','tom'))

print

'hello } '.format('kevin',50)

學習日記5

考核 題改錯 int a 5 int p a a a 這兩個都是錯誤的,陣列名不能自加減 a 神奇的手風琴 分別從字串頭和字串末相向查詢,找到乙個 和乙個 乙個 和乙個 若找不到,則不成立返回 1 若找到之後前者下標大於後者下標,也返回 1,若後者大於前者,則在兩個下標之間數 的個數。如下 在這裡插...

python菜鳥日記5

1.在python中我們可以匯入模組,來呼叫模組裡面的函式,在乙個模組中,我們可以定義很多的函式和變數,但有些函式我們並不希望被別人使用,只希望在模組內部使用,那麼,我們可以通過 下劃線 字首來實現,比如 abc,qiuhe,但是python並沒有強制限制訪問函式或變數,只是一種程式設計的習慣而已 ...

python學習日記

動態語言和靜態語言最大的不同,就是函式和類的定義,不是編譯的時候定義的,而是執行時動態建立的.直接在類中定義的是類屬性,如 class student object name student 例項屬性必須通過例項繫結。如self.age xx 根據python的規則,定義時千萬不要把類屬性和例項屬性...