Here's an example of how to construct an array using a delimited text file:
open()
function:file = open("data.txt", "r")
contents = file.read()
For example, if the text file is a CSV file with commas as the delimiter, you can use the split()
method:
data = contents.split(",")
numbers = [int(n) for n in data]
file.close()
Now you should have an array (or list, depending on the programming language) containing the data from the delimited text file.
Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss
Asked: 2022-10-10 11:00:00 +0000
Seen: 2 times
Last updated: Mar 12 '22
How can I set up Gunicorn with a Django Project?
Looking for a Python Module that finds Tags for a Text describing its Content
Need a Function in Python to remove entries less than 2 digits from an Array
How can I convert a Document in Python?
How can I program a Loop in Python?
How can I enable Python Code Highlighting in Askbot?