[Solved] which variable is being plotted (which line of the code)?
To write some data in a text file it would go something like this: f = open(“guru99.txt”, “a”) data = “some data” f.write(data) 2 solved which variable is being plotted (which line of the code)?