I\'ve searched many threads here on removing the first two lines of a string but I can\'t seem to get it to work with every solution I\'ve tried.
Here is what my string
x="""version 1.00 6992 [-4.32063, -9.1198, -106.59][0.00064, 0.99993, -0.01210][etc...] abc asdda""" print "\n".join(x.split("\n")[2:])
You can simply do this.