You’re trying to delete an open file, and the docs for os.remove()
state…
On Windows, attempting to remove a file that is in use causes an exception to be raised
You could change the code to…
filename = os.path.expanduser('~') + '\Desktop\input.txt' try: os.remove(filename) except OSError: pass f1 = open(filename, 'a')
…or you can replace all that with…
f1 = open(os.path.expanduser('~') + '\Desktop\input.txt', 'w')
…which will truncate the file to zero length before opening.
Related Posts:
- How to delete a file or folder in Python?
- How to open a file using the open with statement
- What is the difference between rw+ and r+
- Is there a way to create multiline comments in Python?
- What is the purpose of the word ‘self’?
- Correct way to write line to file?
- Python- Robot Framework Rebot Using List
- How to update/upgrade a package using pip?
- How can I remove a specific item from an array?
- Behaviour of increment and decrement operators in Python
- Convert bytes to a string
- Python vs Cpython
- How do I update\upgrade pip itself from inside my virtual environment?
- Changing one character in a string
- What is the use of “assert” in Python?
- How can I represent an ‘Enum’ in Python?
- IndexError: too many indices for array
- IndexError: too many indices for array
- numpy array: IndexError: too many indices for array
- How do I specify new lines on Python, when writing on files?
- Relative imports – ModuleNotFoundError: No module named x
- bash: pip: command not found
- What is the difference between importing matplotlib and matplotlib.pyplot?
- Using global variables in a function
- How do I check what version of Python is running my script?
- How to uninstall pip on OSX?
- Converting integer to string in Python
- Reverse a string in Python
- Python for-in loop preceded by a variable
- Python Linked List
- ValueError: The truth value of an array with more than one element is ambiguous. Use a.any() or a.all()
- How do I upgrade the Python installation in Windows 10?
- Reading an Excel file in python using pandas
- What does if __name__ == “__main__”: do?
- How to print without a newline or space
- Python’s equivalent of && (logical-and) in an if-statement
- Difference between del, remove, and pop on lists
- “inconsistent use of tabs and spaces in indentation”
- How can I install packages using pip according to the requirements.txt file from a local directory?
- Error: ‘int’ object is not subscriptable – Python
- Referring to the null object in Python
- How to measure elapsed time in Python?
- How to uninstall Anaconda completely from macOS
- Python: Start and stop timer [duplicate]
- Does Python have a ternary conditional operator?
- python .replace() regex [duplicate]
- Selecting multiple columns in a Pandas dataframe
- not all arguments converted during string formatting.. NO % variables
- How do I install opencv using pip?
- TypeError: ‘builtin_function_or_method’ object is not subscriptable
- Python Variable Declaration
- How do I compare two strings in python?
- SyntaxError: “can’t assign to function call”
- Curve curvature in numpy
- Relative imports in Python 3
- ImportError: No module named sklearn.cross_validation
- ImportError: No module named sklearn.cross_validation
- Get statistics for each group (such as count, mean, etc) using pandas GroupBy?
- How can I prevent the TypeError: list indices must be integers, not tuple when copying a python list to a numpy array?
- What are data classes and how are they different from common classes?
- How to write the Fibonacci Sequence?
- “pip install unroll”: “python setup.py egg_info” failed with error code 1
- Tensorflow import error: No module named ‘tensorflow’
- Python random function
- Converting NumPy array into Python List structure?
- Converting string into datetime
- ImportError: No module named matplotlib.pyplot
- How do you get the logical xor of two variables in Python?
- How do I install pip on macOS or OS X?
- ValueError: could not convert string to float: id
- ImportError: No module named matplotlib.pyplot
- How do I list all files of a directory?
- Pip freeze vs. pip list
- What is the necessity of plt.figure() in matplotlib?
- Print string to text file
- Accessing the index in ‘for’ loops?
- The difference between comparison to np.nan and isnull()
- Best way to return multiple values from a function? [closed]
- Python open() gives FileNotFoundError/IOError: Errno 2 No such file or directory
- ValueError : I/O operation on closed file
- Writing a list to a file with Python
- write() versus writelines() and concatenated strings
- Writing a list to a file with Python
- Read .mat files in Python
- ‘numpy.ndarray’ object has no attribute ‘index’
- Python pandas – filter rows after groupby
- How to join on multiple columns in Pyspark?
- Multiple try codes in one block
- What does sys.stdin read?
- Ruby equivalent for Python’s “try”?
- How to read the last line of a file in Python?
- urllib2.HTTPError: HTTP Error 403: Forbidden
- Python/Django: log to console under runserver, log to file under Apache
- TensorFlow not found using pip
- What is an easy way to implement fprintf in python?
- Get a Try statement to loop around until correct value obtained
- How to append new data onto a new line
- Python IOError: File not open for reading
- How can I find the dimensions of a matrix in Python?
- Find all files in a directory with extension .txt in Python