I can use Python to print one line in the .txt ,say, “[aln-core]:10000000 sequences have been processed”
But I want to print the number(10000000, this is the information I want); how can I do that/
thx
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Do you mean you want to get the 10000000 out of some line=”[aln-core]:10000000 sequences have been processed”?
If you’re sure that line’s always going look like that, try
I mean …