How can I use the 'r' and 'w' at the same time?
Hi I want to know if I can use 'r' and 'w' at the same time, the following is an example
# Example
with open('txt.txt', 'w') as t:
t.write('Hello World')
t.readable()
eg = t.readlines()
When I write this down it will create the txt file but it gives me an error. I Want to know how to use 'r' and 'w' at the same time
- Please help me
- I am suffering
- I need help