How can you get the nth line of a string in Python 3? For example
getline("line1\nline2\nline3",3)
Is there any way to do this using stdlib/builtin functions? I prefer a solution in Python 3, but Python 2 is also fine.
Try the following:
s = "line1\nline2\nline3"
print s.splitlines()[2]
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With