You can’t index (__getitem__
) a _io.TextIOWrapper
object. What you can do is work with a list
of lines. Try this in your code:
lst = open(input("Input file name: "), "r").readlines()
Also, you aren’t closing the file
object, this would be better:
with open(input("Input file name: ", "r") as lst: print(medianStrat(lst.readlines()))
with
ensures that file get closed, see docs
Related Posts:
- TypeError: not all arguments converted during string formatting python
- WinError 2 The system cannot find the file specified (Python)
- Could not find a version that satisfies the requirement tensorflow
- Could not find a version that satisfies the requirement tensorflow
- Local variable referenced before assignment?
- TypeError: write() argument must be str, not bytes (Python 3 vs Python 2 )
- Change figure size and figure format in matplotlib
- TypeError: unsupported operand type(s) for -: ‘list’ and ‘list’
- ValueError: unsupported pickle protocol: 3, python2 pickle can not load the file dumped by python 3 pickle?
- ValueError: unsupported pickle protocol: 3, python2 pickle can not load the file dumped by python 3 pickle?
- Type error Unhashable type:set
- What is the meaning of “int(a[::-1])” in Python?
- dump() missing 1 required positional argument: ‘fp’ in python json
- TypeError: module.__init__() takes at most 2 arguments (3 given)
- Python cant convert ‘list’ object to str error [closed]
- Does python have header files like C/C++?
- Relative imports – ModuleNotFoundError: No module named x
- Python Variable Declaration
- TypeError: ‘int’ object is not callable
- Best way to convert string to bytes in Python 3?
- PermissionError: [Errno 13] Permission denied
- What is setup.py?
- Cannot find module cv2 when using OpenCV
- How to remove EOFError: EOF when reading a line?
- IndexError: tuple index out of range —– Python
- TypeError: cannot unpack non-iterable NoneType object
- Is there a ‘foreach’ function in Python 3?
- How to print like printf in Python3?
- TypeError: ‘type’ object is not subscriptable when indexing in to a dictionary
- Invalid character in identifier
- pip or pip3 to install packages for Python 3?
- Convert list to tuple in Python
- ‘str’ object has no attribute ‘decode’. Python 3 error?
- How to find all the indexes of a recurring item in a list?
- pandas: merge (join) two data frames on multiple columns
- How do you use subprocess.check_output() in Python?
- (Help) TypeError: ‘str’ object cannot be interpreted as an integer
- Why KeyError: 0
- How to create a new text file using Python
- Are dictionaries ordered in Python 3.6+?
- builtins.TypeError: must be str, not bytes
- takes 1 positional argument but 2 were given
- Python 3 ImportError: No module named ‘ConfigParser’
- Why am I getting this syntax error: keyword can’t be an expression
- Check string “None” or “not” in Python 2.7
- re.search().TypeError: cannot use a string pattern on a bytes-like object
- Add Legend to Seaborn point plot
- ctypes – Beginner
- How can I install Python’s pip3 on my Mac?
- how to update spyder on anaconda
- AttributeError(“‘str’ object has no attribute ‘read'”)
- Python Save to file
- Get ZeroDivisionError: float division in python
- TypeError: ‘encoding’ is an invalid keyword argument for this function
- ImportError: No module named scipy
- What is the Python 3 equivalent of “python -m SimpleHTTPServer”
- What does -> mean in Python function definitions?
- TypeError(“‘bool’ object is not iterable”,) when trying to return a Boolean
- “for line in…” results in UnicodeDecodeError: ‘utf-8’ codec can’t decode byte
- How do I format a string using a dictionary in python-3.x?
- How to use 2to3 properly for python?
- TypeError: cannot unpack non-iterable NoneType object
- Shebang doesn’t work with python3
- Python was not found; run without arguments to install from the Microsoft Store, or disable this shortcut from Settings
- Python map object is not subscriptable
- pythonw.exe or python.exe?
- .pyw files in python program
- Get a random sample with replacement
- NameError: global name ‘unicode’ is not defined – in Python 3
- Conda command is not recognized on Windows 10
- TypeError: int() argument must be a string, a bytes-like object or a number, not ‘list’
- Python TypeError: non-empty format string passed to object.__format__
- AttributeError: ‘Series’ object has no attribute ‘reshape’
- TypeError: decoding str is not supported
- ImportError: No module named ‘django.core.urlresolvers’
- Numpy, multiply array with scalar
- How to do a Sigma in python 3
- Python 3: Multiply a vector by a matrix without NumPy
- How to fix “Can’t find a default Python” error
- TypeError: ‘newline’ is an invalid keyword argument for this function
- TypeError: coercing to Unicode: need string or buffer, list found
- “This constructor takes no arguments” error in __init__
- TypeError: super() takes at least 1 argument (0 given) error is specific to any python version?
- ValueError: cannot switch from manual field specification to automatic field numbering
- How to embed image or picture in jupyter notebook, either from a local machine or from a web resource?
- Adding +1 to a variable inside a function
- Install py2exe for python 2.7 over pip: this package requires Python 3.3 or later
- How can I count time in Python 3?
- What is the correct format to write float value to file in Python
- Using strip() to clean up a string
- ImportError: No module named IPython
- “E: Unable to locate package python3-pip”
- How to print a specific row of a pandas DataFrame?
- TypeError: can only concatenate tuple (not “int”) in Python
- Accessing dict_keys element by index in Python3
- Symbol not found: __PyCodecInfo_GetIncrementalDecoder
- KeyError: ‘plotly_domain’
- TypeError: ‘zip’ object is not subscriptable
- str.translate gives TypeError – Translate takes one argument (2 given), worked in Python 2
- TypeError: ‘NoneType’ object has no attribute ‘__getitem__’