Brainiac11 / My-Projects

Re-definition found for builtin function PYL-W0622
Anti-pattern
Major
a year agoa year old
Redefining built-in 'exit'
 1import pygame
 2from sys import exit 3
 4
 5pygame.init() # Initialize pygame
Redefining built-in 'list'
13        list[j + 1] = key
14 
15 
16list = [0, 12, 14, 21, 2, 3, 1, 4, 9, 10, 34]17insertionSort(list)
18print(list)