Posts by Bruno Santos • 43 points
5 posts
-
0
votes1
answer540
viewsQ: How to assign the elements of a list to different variables in Python?
I have a list, like the following: lista = [1, 2, 3, 4, 5] Even without knowing how many elements there are inside the list, how do I assign each element of the list to a distinct variable? (as in…
-
0
votes1
answer53
viewsA: How to insert a line into a gnuplot py chart?
I figured out the way. Just include an arrow, counting the initial and final position, and finally saying that it need not have tip, as in the example below: g('set arrow from <initial position…
python-2.7answered Bruno Santos 43 -
1
votes1
answer53
viewsQ: How to insert a line into a gnuplot py chart?
I want to insert a line in the middle of a graph I’m filling with Gnuplot (python),which will serve as Threshold, as for example in y = 0. How can I do this?
python-2.7asked Bruno Santos 43 -
0
votes1
answer1078
viewsQ: How to break a list into two distinct lists to use in Gnuplot python?
A gnuplot online feature allows you to place your data in two columns separated by space, and it understands how the axes "x" and "y" http://gnuplot.respawned.com/ I am trying to use gnuplot python.…
-
2
votes1
answer163
viewsQ: How to remove a specific character from some specific strings within a Python list?
I have a list of examples: ['#[Header]', '#Application Name\tLCsolution', '#Version\t1.24'] I would like to know how to remove a specific character, such as the # of all elements of the list, or, if…