Advertisement
Guest User

Untitled

a guest
Apr 22nd, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.23 KB | None | 0 0
  1. from question import Question
  2.  
  3. print("Hello to Adrians are you gay or autistic or just a normal cunt quiz.Hope ya enjoy it ya cunt")
  4.  
  5.  
  6. question_prompts = [
  7. "Do you like to suck dick?\n(a) Yes but not much\n(b)No cuz thats gay\n(c)Only if i say no homo before i suck it",
  8. "Do you know what the word Autism means??\n(a) Yes it means you cant use your legs\n(b)No its probably a pencil?\n(c)It'sa developmental disorder of variable severity that is characterized by difficulty in social interaction and communication and by restricted or repetitive patterns of thought and behaviour.",
  9. "In what color do you prefer your shaft's?\n(a)Brown\n(b)Black\n(c)White\n(d)Ginger\n(e)None",
  10. "Do you sometimes lose the function of your leg's?\n(a)No i can walk miles\n(b)Not often but sometimes they fall asleep\n(c)Yes all the time but i have my wheelies to break my feelies",
  11. "What is your favorite color?\n(a)Yellow\n(b)Purple\n(c)Red\n(d)White\n(e)Aid's",
  12. "Can you spell the word corenurburum?\n(a)Kurneruburum\n(b)Corebourbun\n(c)Cocewnubueubuem\n(d)vpnsecurityburburm",
  13. "What is 2+2=?\n(a)4\n(b)5\n(c)0\n(d)I cant number?",
  14. "In highschool did u saw another bois dick?\n(a)Yes it was big\n(b)No dats gay\n(c)He kept showing it to everyone it was not my fault",
  15. "Did this quiz gave you autism?\n(a)No it was A-MA-I-ZING\n(b)It was gay\n(c)What is autismus???\n(d)Gimme the D",
  16. ]
  17. questions = [
  18. Question(question_prompts[0], "a" "c"),
  19. Question(question_prompts[1], "a" "b" ),
  20. Question(question_prompts[2], "a" "b" "c" "d"),
  21. Question(question_prompts[3], "c" ),
  22. Question(question_prompts[4], "a" "b" "c" "d" ),
  23. Question(question_prompts[5], "a" "c" ),
  24. Question(question_prompts[6], "b" "d" ),
  25. Question(question_prompts[7], "a" "c" ),
  26. Question(question_prompts[8], "a" "d" "b" ),
  27. ]
  28.  
  29. def run_tests(questions):
  30. score = 1 - 9
  31. for question in questions:
  32. answer = input(question.prompt)
  33. if answer == question.answer:
  34. score += 1 - 9
  35. print("You got" + str(score) + "/" + str(len(questions)) + "Correct")
  36. print ("You are the reason they made the word autismo gaysmosis.YOU HELLA GAY AND AUTISTIC")
  37.  
  38.  
  39.  
  40.  
  41.  
  42. run_tests(questions)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement