Skip to content

Instantly share code, notes, and snippets.

View chart07-sudo's full-sized avatar

chart07-sudo

  • Joined Sep 30, 2025
View GitHub Profile
@chart07-sudo
chart07-sudo / sortingHat.py
Created October 12, 2025 03:52
Short Sorting Hat quiz from Codedex
Gryffindor = 0
Ravenclaw = 0
Hufflepuff = 0
Slytherin = 0
Q1 = int(input("Q1) Do you like Dawn or dusk? \n 1) Dawn \n 2) Dusk \n Answer: "))
if Q1 == 1:
Gryffindor = Gryffindor + 1
Ravenclaw = Ravenclaw + 1