import pygame
from pygame.locals import *
from sys import exit
from random import randint
pygame.init()
screen = pygame.display.set_mode((640, 480), 0, 32)
while True:
for event in pygame.event.get():
if event.type == QUIT:
exit()
rand_col = (randint(0, 255), randint(0, 255), randint(0, 255))
for _ in xrange(100):
rand_pos = (randint(0, 630), randint(0, 479))
screen.set_at(rand_pos, rand_col)
pygame.display.update()
In the above code, what on earth is the little underscore doing in that for loop?
for _
Also, what does xrange do? I'M pretty sure that's a simple one but I can't remember. Thanks.