Created
April 15, 2016 18:03
-
-
Save evanthebouncy/78a862358c22fc6bac8c65823d796cb1 to your computer and use it in GitHub Desktop.
python shit that won't terminate with ctrl-C
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def f(x): | |
while x == x: | |
if 4 == 3: | |
x = 3 | |
print f([1,2,3,4,5]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment