Pygame-Examples
Pygame-Examples copied to clipboard
Name Error
line 36, in createCircles for i in xrange(100): NameError: name 'xrange' is not defined
Hello I am getting this error hope u will help me to fix it Thanks
Try changing xrange to range.
xrange was used in Python2. In Python3 it has been renamed to range.