Skip to content

Instantly share code, notes, and snippets.

@JensRantil
Last active August 29, 2015 14:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JensRantil/1b962d58f9dd56ee6ea4 to your computer and use it in GitHub Desktop.
Save JensRantil/1b962d58f9dd56ee6ea4 to your computer and use it in GitHub Desktop.
def minfunktion(a, b):
return a + b
class MinKlass:
def __init__(self, siffra):
self.siffra = siffra
def getSiffra(self):
return self.siffra
#a = MinKlass(55)
#a.getSiffra()
b = 43
if b == 43:
print "Japp!"
elif b == 42:
print "Happ!"
else:
print "Nope"
for a in range(1,6):
print a
while True:
print "Hi"
break
w = {"hej":3, "yo": 6}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment