Skip to content

Instantly share code, notes, and snippets.

View kbatchelli's full-sized avatar

Kieran Batchelli-Hennessey kbatchelli

View GitHub Profile
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDHshn/+t5DxU/seGKQEclrc/eLWafFVG7ZeVgghN1+MbRk+d39UVDigN9Qd0nMOa9u8tjJDRZjqfbdnHnEsUtJXbc+KrWKWpD7ImZelM5L371oWJ4Z+Q7NLOHfFlGOzrW1dGgdKLM1GEDkMO7NNCBLxONdXOp0g+ax9+ZPVVMgRzY3C98SYI1bdtbutn77iWNm78L8EufwHbqqwsg/jYrxMCOlGjornln71JInC95uULUMx0HMzDl2wioQosawWA7XSqvscF4bbB1izAqMNEf/9Vvw/r26XryTSFisOr1UyH7IcEPROtFa2sarRUXy8I8MSeE9Nr5Pj42EU4u+uGNR dogec@Idkwhattonamemypctbh
@kbatchelli
kbatchelli / g.v.1.4.py
Last active April 29, 2024 17:28
g.v.1.4.py
import random
max_score=100
max_scorer=""
while True:
print("Top score: %d by %s" % (max_score,max_scorer))
name = input("what’s your name?")
print("hello %s" % name)
answer = random.randint(1,100)
guess=0