Report Bug
Qus : Which one of the following is not attributes of file?
Qusनिम्नलिखित में से कौन सा फाइल का ऐट्रीब्यूट नहीं है?

A. closed
B. softspace
C. rename
D. None of the above.


Solution
C. rename



Explanation


In Python, the term "attribute of a file" typically refers to the various properties or characteristics associated with a file. File attributes can be accessed using methods and attributes provided by the os module or other file-related modules. Some common attributes include:

File Name:

File Path:

File Size:

File Mode (Permissions):




Report Bug