Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

10
  • Did you mean: ‘print(tm[0], tm[1])’? Commented Nov 22, 2020 at 20:57
  • Thank you very much... great answer short and the perfect solution. Really thank you. Commented Nov 22, 2020 at 20:59
  • 1
    print(*tm) would do it Commented Nov 22, 2020 at 21:06
  • In this code, for line in handle : if not line.startswith("From") : continue if line.startswith("From:") : continue raw_dat.append(line.split()), do you think raw_dat.append(line.split()) will get executed? Commented Nov 22, 2020 at 21:07
  • @JoeFerndz . I don't know what you mean... At first I thought it was a trick question. But I cut(#) the line of code and the whole thing wouldn't work. So I would like to know what you mean by that. It get's executed and it's an important part(at least for me) of the code. Commented Nov 22, 2020 at 22:39