Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

The problem I am having involves reading in from a file, and using python's turtle to draw shapes based on what is read in.

The text file looks like this (but no spaces in between the lines):

r 0.0 200.0 50.0 100.0 blue

c 0.0 200.0 40.0 red

p 0.0 200.0 3 40.0 black

the problem is going from a line in the file to something like r = Rectangle(0.0,200.0,50.0,100.0,"blue")

if the line starts with a "r", use my Rectangle method, if its starts with a "c" use my Circle method (or "p" use Polygon())

I have all the shape methods down I just don't know how to get it from the file to say draw a rectangle(or circle/polygon) at these coordinates with these side lengths and this color. This is what I have so far, but it seems too complicated and is getting messy. Any help or ideas are appreciated, thanks.

shapeCollection=[]
with open(name,"r") as f:
    for line in f:
        for i in line.split():
            shapeCollection.append(i)
print(shapeCollection)
for each in shapeCollection:
    if each == "r":
        #(xCor) = each+1
    elif each == "c":
        #
    elif each == "p":
        #
share|improve this question

1 Answer

up vote 0 down vote accepted

Do something like this

for line in f:
 inp = line.split()
 x = float(inp[1])
 y = float(inp[2])

 if(inp[0] == 'r'):
  DrawRectangle(x,y,float(inp[3]),float(inp[4]),inp[5])

This just basically shows how to parse the input. It is pretty simple and you see how it could easily be applied to the other 2 cases.

share|improve this answer
Thanks so much for the quick help! – user1647372 Sep 12 '12 at 17:27
Np, don't forget to accept if this worked for you – Mozoby Sep 12 '12 at 17:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.