readable()

readable()
Returns boolean value True or False. Returns True if file is readable , otherwise False .

In file read mode ( r )

fob=open('data1.txt','r')
print(fob.readable()) # True

Using write mode

fob=open('data1.txt','w')
print(fob.readable()) # False

Using append mode

fob=open('data1.txt','a')
print(fob.readable()) # False

Using read and write

fob=open('data1.txt','+a')
print(fob.readable()) # True
writable()

File Append File Write
Subscribe to our YouTube Channel here


Subscribe

* indicates required
Subscribe to plus2net

    plus2net.com



    Post your comments , suggestion , error , requirements etc here





    Python Video Tutorials
    Python SQLite Video Tutorials
    Python MySQL Video Tutorials
    Python Tkinter Video Tutorials
    We use cookies to improve your browsing experience. . Learn more
    HTML MySQL PHP JavaScript ASP Photoshop Articles FORUM . Contact us
    ©2000-2024 plus2net.com All rights reserved worldwide Privacy Policy Disclaimer