Ok, so I converted each line in a text file into a member of a list by doing the following: chkseq=[line.strip() for line in open("sequence.txt")]
So when I print chkseq I get this:
['3','3']
What I would like is for it to instead look like this:
[3,3]
I know this is possible, I'm just unsure of how! I need them to be intergers, not strings. So if all else fails, that is my main goal in this: create a list from a .txt file whose members are intergers (which would be all the .txt file contained).
Thanks!! -OSFTW
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
|
|
|
It looks like you want to interpret the strings as integers. Use
It can also be written using
|
|||
|
|
iterate over the elements of your list and print them out with your preferred formatting rather than relying on the default formatting when printing the whole list at once. |
|||
|
|
|
Say your array is called input, and you want to store the value in an array called chkseq, your code would be:
Or, if you wanted to do everything all in one line:
|
|||||
|
|
Passing a string to the
|
|||
|
|