Posts by eepaulo • 53 points
1 post
-
5
votes1
answer35
viewsQ: Graphic problem
How to arrange the view on the y-axis? import matplotlib.pyplot as plt with open("text.txt") as f: data=f.read() data=data.split('\n') x=[row.split(' ')[0] for row in data] y=[row.split(' ')[1] for…