PythonFile物件的屬性

2022-06-19 12:33:12 字數 783 閱讀 9311

pythonfile物件的屬性:

乙個檔案被開啟後,使用物件進行接收,接收的物件即為 file 物件

示例:

'''

file.closed

返回true如果檔案已被關閉,否則返回false

file.mode

返回被開啟檔案的訪問模式

file.name

返回檔案的名稱

'''

程式:

file = open("

test.txt

",'r')

#file.name 返回檔案的名稱

print

(file.name)

#test.txt

#file.closed 如果檔案未關閉返回 false

print

(file.closed)

#false

#file.mode 返回被開啟檔案的訪問模式

print

(file.mode)#r

#file.closed 如果檔案已關閉返回 true

file.close()

print

(file.closed)

#true

2020-02-14

js物件中取屬性值物件 屬性和物件 屬性 的區別

物件的屬性和方法統稱為物件的成員。首先,我們知道 js物件中取屬性值 和 的區別 一般作為靜態物件使用時來訪問屬性。而 表示法在動態訪問屬性時就非常有用。如 var object var name1 object.name var name2 object name 區別 相同點 都可以獲取到obj...

標籤屬性 物件屬性

doctype html en utf 8 viewport content width device width,initial scale 1.0 document title head div1 title qqqqq 123123 div checkbox name id ck 標籤屬性 物...

python沒有屬性的物件 物件沒有屬性g

我正在使用python 3.3中的tkinter模組,對此我還比較陌生,正在使用輸入框。出於某種原因,當我執行以下 時,我收到一條錯誤訊息,說attribute error nonetype 物件沒有屬性 get 有人能解釋一下原因嗎?我做了乙個類似的程式,乙個條目工作得很好。from tkinte...