I have the following code:
def odraw(oposlist, osizelist):
for opos in oposlist and osize in osizelist:
pygame.draw.rect(screen, black, (opos[0], opos[1], osize[0], osize[1]))
How to rephrase the second line? How it is written right now obviously does not match the Python syntax.