fork download
  1. import random
  2.  
  3. # List of questions with options and correct answers (origins of all 60 muscles)
  4. quiz_data = [
  5. {"question": "The Occipitofrontalis starts from the _______.", "options": ["Superior nuchal line", "Zygomatic arch", "Coronoid process", "I don't know"], "answer": "a"},
  6. {"question": "The Orbicularis Oris starts from the _______.", "options": ["Lateral aspects of maxilla", "Muscle fibers around mouth", "Mandible", "I don't know"], "answer": "b"},
  7. {"question": "The Buccinator starts from the _______.", "options": ["Temporal lines", "Clavicle", "Lateral aspects of maxilla and mandible", "I don't know"], "answer": "c"},
  8. {"question": "The Platysma starts from the _______.", "options": ["Fasciae of deltoid and pectoralis major muscles", "Superior nuchal line", "Xiphoid process", "I don't know"], "answer": "a"},
  9. {"question": "The Temporalis starts from the _______.", "options": ["Zygomatic arch", "Temporal lines", "Mastoid process", "I don't know"], "answer": "b"},
  10. {"question": "The Masseter starts from the _______.", "options": ["Temporal lines", "Clavicle", "Zygomatic arch", "I don't know"], "answer": "c"},
  11. {"question": "The Sternocleidomastoid starts from the _______.", "options": ["Clavicle and manubrium", "External occipital protuberance", "Ribs 1-11", "I don't know"], "answer": "a"},
  12. {"question": "The Trapezius starts from the _______.", "options": ["Clavicle and sternum", "External occipital protuberance, nuchal ligament, C7-T12", "Iliac crest", "I don't know"], "answer": "b"},
  13. {"question": "The Diaphragm starts from the _______.", "options": ["Inferior margins of ribs 1-11", "Pubis", "Xiphoid process, ribs 10-12, lumbar vertebrae", "I don't know"], "answer": "c"},
  14. {"question": "The External Intercostals start from the _______.", "options": ["Inferior margins of ribs 1-11", "Superior margins of ribs 2-12", "Costal cartilages 5-7", "I don't know"], "answer": "a"},
  15. {"question": "The Internal Intercostals start from the _______.", "options": ["Xiphoid process", "Inferior margins of ribs 1-11", "Pubis", "I don't know"], "answer": "b"},
  16. {"question": "The Rectus Abdominis starts from the _______.", "options": ["Ribs 5-12", "Iliac crest", "Pubis", "I don't know"], "answer": "c"},
  17. {"question": "The External Abdominal Oblique starts from the _______.", "options": ["Ribs 5-12 (inferior 8 ribs)", "Inguinal ligament", "Clavicle", "I don't know"], "answer": "a"},
  18. {"question": "The Transversus Abdominis starts from the _______.", "options": ["Ribs 5-12", "Inguinal ligament, iliac crest, thoracolumbar fascia", "Pubis", "I don't know"], "answer": "b"},
  19. {"question": "The Pectoralis Major starts from the _______.", "options": ["Ribs 3-5", "Clavicle, sternum, costal cartilages 1-6", "Vertebrae T7-L5", "I don't know"], "answer": "b"},
  20. {"question": "The Latissimus Dorsi starts from the _______.", "options": ["Vertebrae T7-L5, lower ribs, thoracolumbar fascia", "Clavicle and sternum", "Ribs 1-8", "I don't know"], "answer": "a"},
  21. {"question": "The Pectoralis Minor starts from the _______.", "options": ["Clavicle", "Ribs 3-5", "Inferior angle of scapula", "I don't know"], "answer": "b"},
  22. {"question": "The Serratus Anterior starts from the _______.", "options": ["Supraspinous fossa", "Lateral border of scapula", "Ribs 1-8 to 9", "I don't know"], "answer": "c"},
  23. {"question": "The Teres Major starts from the _______.", "options": ["Inferior angle to lateral border of scapula", "Supraspinous fossa", "Ribs 3-5", "I don't know"], "answer": "a"},
  24. {"question": "The Supraspinatus starts from the _______.", "options": ["Infraspinous fossa", "Supraspinous fossa of scapula", "Subscapular fossa", "I don't know"], "answer": "b"},
  25. {"question": "The Infraspinatus starts from the _______.", "options": ["Supraspinous fossa", "Lateral border of scapula", "Infraspinous fossa of scapula", "I don't know"], "answer": "c"},
  26. {"question": "The Teres Minor starts from the _______.", "options": ["Lateral border of scapula", "Infraspinous fossa", "Subscapular fossa", "I don't know"], "answer": "a"},
  27. {"question": "The Subscapularis starts from the _______.", "options": ["Supraspinous fossa", "Subscapular fossa of scapula", "Ribs 1-8", "I don't know"], "answer": "b"},
  28. {"question": "The Biceps Brachii starts from the _______.", "options": ["Infraglenoid tubercle", "Supraglenoid tubercle and coracoid process", "Lateral epicondyle", "I don't know"], "answer": "b"},
  29. {"question": "The Triceps Brachii starts from the _______.", "options": ["Infraglenoid tubercle and humerus", "Supraglenoid tubercle", "Medial epicondyle", "I don't know"], "answer": "a"},
  30. {"question": "The Brachialis starts from the _______.", "options": ["Lateral supracondylar ridge", "Anterior distal shaft of humerus", "Coracoid process", "I don't know"], "answer": "b"},
  31. {"question": "The Brachioradialis starts from the _______.", "options": ["Medial epicondyle", "Coronoid process", "Lateral supracondylar ridge of humerus", "I don't know"], "answer": "c"},
  32. {"question": "The Pronator Teres starts from the _______.", "options": ["Medial epicondyle and coronoid process", "Lateral epicondyle", "Styloid process", "I don't know"], "answer": "a"},
  33. {"question": "The Extensor Digitorum starts from the _______.", "options": ["Medial epicondyle", "Lateral epicondyle of humerus", "Coracoid process", "I don't know"], "answer": "b"},
  34. {"question": "The Flexor Carpi Ulnaris starts from the _______.", "options": ["Lateral epicondyle", "Pisiform", "Medial epicondyle of humerus", "I don't know"], "answer": "c"},
  35. {"question": "The Deltoid starts from the _______.", "options": ["Clavicle, scapular spine, acromion", "Infraglenoid tubercle", "Ribs 3-5", "I don't know"], "answer": "a"},
  36. {"question": "The Coracobrachialis starts from the _______.", "options": ["Supraglenoid tubercle", "Coracoid process", "Lateral supracondylar ridge", "I don't know"], "answer": "b"},
  37. {"question": "The Psoas Major starts from the _______.", "options": ["Vertebral bodies T12-L5", "Iliac crest", "Ischial tuberosity", "I don't know"], "answer": "a"},
  38. {"question": "The Iliacus starts from the _______.", "options": ["Vertebral bodies T12-L5", "Iliac crest and fossa, sacral ala", "Pubis", "I don't know"], "answer": "b"},
  39. {"question": "The Tensor Fascia Latae starts from the _______.", "options": ["Ischial tuberosity", "Pubis", "Iliac crest and anterior superior spine", "I don't know"], "answer": "c"},
  40. {"question": "The Gluteus Medius starts from the _______.", "options": ["Ilium", "Sacrum", "Ischial tuberosity", "I don't know"], "answer": "a"},
  41. {"question": "The Gluteus Minimus starts from the _______.", "options": ["Sacrum", "Ilium", "Coccyx", "I don't know"], "answer": "b"},
  42. {"question": "The Gluteus Maximus starts from the _______.", "options": ["Iliac crest", "Ilium, sacrum, coccyx", "Pubis", "I don't know"], "answer": "b"},
  43. {"question": "The Sartorius starts from the _______.", "options": ["On and below anterior superior spine of ilium", "Ischial tuberosity", "Linea aspera", "I don't know"], "answer": "a"},
  44. {"question": "The Gracilis starts from the _______.", "options": ["Ischial tuberosity", "Pubis", "Iliac crest", "I don't know"], "answer": "b"},
  45. {"question": "The Semimembranosus starts from the _______.", "options": ["Pubis", "Ischial tuberosity", "Linea aspera", "I don't know"], "answer": "b"},
  46. {"question": "The Semitendinosus starts from the _______.", "options": ["Ischial tuberosity", "Pubis", "Iliac crest", "I don't know"], "answer": "a"},
  47. {"question": "The Quadriceps Femoris: Vastus Intermedius starts from the _______.", "options": ["Anterior and lateral shaft of femur", "Linea aspera", "Greater trochanter", "I don't know"], "answer": "a"},
  48. {"question": "The Quadriceps Femoris: Rectus Femoris starts from the _______.", "options": ["Linea aspera", "Anterior inferior spine of ilium", "Greater trochanter", "I don't know"], "answer": "b"},
  49. {"question": "The Quadriceps Femoris: Vastus Lateralis starts from the _______.", "options": ["Linea aspera", "Anterior shaft of femur", "Greater trochanter and linea aspera", "I don't know"], "answer": "c"},
  50. {"question": "The Quadriceps Femoris: Vastus Medialis starts from the _______.", "options": ["Linea aspera", "Greater trochanter", "Anterior shaft of femur", "I don't know"], "answer": "a"},
  51. {"question": "The Adductor Longus starts from the _______.", "options": ["Pubis", "Ischial tuberosity", "Iliac crest", "I don't know"], "answer": "a"},
  52. {"question": "The Adductor Brevis starts from the _______.", "options": ["Ischial tuberosity", "Pubis", "Iliac crest", "I don't know"], "answer": "b"},
  53. {"question": "The Pectineus starts from the _______.", "options": ["Pubis", "Ischial tuberosity", "Linea aspera", "I don't know"], "answer": "a"},
  54. {"question": "The Adductor Magnus starts from the _______.", "options": ["Ischial tuberosity", "Ischium and pubis", "Iliac crest", "I don't know"], "answer": "b"},
  55. {"question": "The Tibialis Anterior starts from the _______.", "options": ["Lateral tibia, interosseous membrane", "Shaft of fibula", "Proximal tibia", "I don't know"], "answer": "a"},
  56. {"question": "The Extensor Hallucis Longus starts from the _______.", "options": ["Shaft of fibula", "Medial aspect of fibula, interosseous membrane", "Lateral condyle of tibia", "I don't know"], "answer": "b"},
  57. {"question": "The Extensor Digitorum Longus starts from the _______.", "options": ["Shaft of fibula", "Proximal tibia", "Lateral condyle of tibia, shaft of fibula", "I don't know"], "answer": "c"},
  58. {"question": "The Fibularis Tertius starts from the _______.", "options": ["Distal shaft of fibula and interosseous membrane", "Proximal fibula", "Lateral tibia", "I don't know"], "answer": "a"},
  59. {"question": "The Gastrocnemius starts from the _______.", "options": ["Lateral condyle and popliteal surface of femur", "Proximal tibia", "Shaft of fibula", "I don't know"], "answer": "a"},
  60. {"question": "The Soleus starts from the _______.", "options": ["Shaft of fibula", "Proximal third of tibia and fibula", "Lateral condyle of tibia", "I don't know"], "answer": "b"},
  61. {"question": "The Tibialis Posterior starts from the _______.", "options": ["Proximal half of tibia, fibula, interosseous membrane", "Shaft of fibula", "Lateral condyle of tibia", "I don't know"], "answer": "a"},
  62. {"question": "The Flexor Hallucis Longus starts from the _______.", "options": ["Proximal tibia", "Shaft of fibula", "Midshaft of tibia", "I don't know"], "answer": "b"},
  63. {"question": "The Flexor Digitorum Longus starts from the _______.", "options": ["Midshaft of tibia", "Proximal fibula", "Lateral condyle of tibia", "I don't know"], "answer": "a"},
  64. {"question": "The Fibularis Longus starts from the _______.", "options": ["Proximal half of fibula, lateral condyle of tibia", "Shaft of tibia", "Distal fibula", "I don't know"], "answer": "a"}
  65. ]
  66.  
  67. # Function to run the quiz
  68. def run_quiz():
  69. score = 0
  70. idk_count = 0 # Track "I don't know" responses
  71. total_questions = len(quiz_data)
  72.  
  73. # Shuffle the questions
  74. random.shuffle(quiz_data)
  75.  
  76. print("Welcome to the Muscle Anatomy Quiz!")
  77. print("For each question, enter 'a', 'b', 'c', or 'd' to select your answer.")
  78. print("Option 'd' is 'I don't know' and won't affect your score.\n")
  79.  
  80. for i, item in enumerate(quiz_data, 1):
  81. # Create a copy of the first three options and shuffle them
  82. shuffled_options = item['options'][:3]
  83. random.shuffle(shuffled_options)
  84. # Add "I don't know" as the fixed fourth option
  85. shuffled_options.append("I don't know")
  86.  
  87. # Determine the new correct answer index after shuffling
  88. original_answer_idx = ord(item['answer']) - ord('a')
  89. correct_option = item['options'][original_answer_idx]
  90. new_answer = chr(ord('a') + shuffled_options.index(correct_option))
  91.  
  92. print(f"Question {i}: {item['question']}")
  93. print(f"a) {shuffled_options[0]}")
  94. print(f"b) {shuffled_options[1]}")
  95. print(f"c) {shuffled_options[2]}")
  96. print(f"d) {shuffled_options[3]}")
  97.  
  98. while True:
  99. answer = input("Your answer: ").strip().lower()
  100. if answer in ['a', 'b', 'c', 'd']:
  101. break
  102. print("Invalid input. Please enter 'a', 'b', 'c', or 'd'.")
  103.  
  104. if answer == 'd':
  105. idk_count += 1
  106. print(f"You chose 'I don't know'. The correct answer was '{new_answer}' ({correct_option}).\n")
  107. elif answer == new_answer:
  108. score += 1
  109. print("Correct!\n")
  110. else:
  111. print(f"Wrong. The correct answer was '{new_answer}' ({correct_option}).\n")
  112.  
  113. # Display final results
  114. attempted_questions = total_questions - idk_count
  115. percentage = (score / total_questions) * 100 if total_questions > 0 else 0
  116. print(f"Quiz completed!")
  117. print(f"Score: {score}/{total_questions} ({percentage:.2f}%)")
  118. print(f"Questions attempted: {attempted_questions}/{total_questions}")
  119. print(f"'I don't know' chosen: {idk_count} times")
  120. if percentage == 100 and idk_count == 0:
  121. print("Perfect score! Excellent work!")
  122. elif percentage >= 70 and idk_count < total_questions / 2:
  123. print("Good job!")
  124. else:
  125. print("Keep studying those muscles!")
  126.  
  127. # Run the quiz
  128. if __name__ == "__main__":
  129. run_quiz()
Success #stdin #stdout 0.03s 25768KB
stdin
Standard input is empty
stdout
import random

# List of questions with options and correct answers (origins of all 60 muscles)
quiz_data = [
    {"question": "The Occipitofrontalis starts from the _______.", "options": ["Superior nuchal line", "Zygomatic arch", "Coronoid process", "I don't know"], "answer": "a"},
    {"question": "The Orbicularis Oris starts from the _______.", "options": ["Lateral aspects of maxilla", "Muscle fibers around mouth", "Mandible", "I don't know"], "answer": "b"},
    {"question": "The Buccinator starts from the _______.", "options": ["Temporal lines", "Clavicle", "Lateral aspects of maxilla and mandible", "I don't know"], "answer": "c"},
    {"question": "The Platysma starts from the _______.", "options": ["Fasciae of deltoid and pectoralis major muscles", "Superior nuchal line", "Xiphoid process", "I don't know"], "answer": "a"},
    {"question": "The Temporalis starts from the _______.", "options": ["Zygomatic arch", "Temporal lines", "Mastoid process", "I don't know"], "answer": "b"},
    {"question": "The Masseter starts from the _______.", "options": ["Temporal lines", "Clavicle", "Zygomatic arch", "I don't know"], "answer": "c"},
    {"question": "The Sternocleidomastoid starts from the _______.", "options": ["Clavicle and manubrium", "External occipital protuberance", "Ribs 1-11", "I don't know"], "answer": "a"},
    {"question": "The Trapezius starts from the _______.", "options": ["Clavicle and sternum", "External occipital protuberance, nuchal ligament, C7-T12", "Iliac crest", "I don't know"], "answer": "b"},
    {"question": "The Diaphragm starts from the _______.", "options": ["Inferior margins of ribs 1-11", "Pubis", "Xiphoid process, ribs 10-12, lumbar vertebrae", "I don't know"], "answer": "c"},
    {"question": "The External Intercostals start from the _______.", "options": ["Inferior margins of ribs 1-11", "Superior margins of ribs 2-12", "Costal cartilages 5-7", "I don't know"], "answer": "a"},
    {"question": "The Internal Intercostals start from the _______.", "options": ["Xiphoid process", "Inferior margins of ribs 1-11", "Pubis", "I don't know"], "answer": "b"},
    {"question": "The Rectus Abdominis starts from the _______.", "options": ["Ribs 5-12", "Iliac crest", "Pubis", "I don't know"], "answer": "c"},
    {"question": "The External Abdominal Oblique starts from the _______.", "options": ["Ribs 5-12 (inferior 8 ribs)", "Inguinal ligament", "Clavicle", "I don't know"], "answer": "a"},
    {"question": "The Transversus Abdominis starts from the _______.", "options": ["Ribs 5-12", "Inguinal ligament, iliac crest, thoracolumbar fascia", "Pubis", "I don't know"], "answer": "b"},
    {"question": "The Pectoralis Major starts from the _______.", "options": ["Ribs 3-5", "Clavicle, sternum, costal cartilages 1-6", "Vertebrae T7-L5", "I don't know"], "answer": "b"},
    {"question": "The Latissimus Dorsi starts from the _______.", "options": ["Vertebrae T7-L5, lower ribs, thoracolumbar fascia", "Clavicle and sternum", "Ribs 1-8", "I don't know"], "answer": "a"},
    {"question": "The Pectoralis Minor starts from the _______.", "options": ["Clavicle", "Ribs 3-5", "Inferior angle of scapula", "I don't know"], "answer": "b"},
    {"question": "The Serratus Anterior starts from the _______.", "options": ["Supraspinous fossa", "Lateral border of scapula", "Ribs 1-8 to 9", "I don't know"], "answer": "c"},
    {"question": "The Teres Major starts from the _______.", "options": ["Inferior angle to lateral border of scapula", "Supraspinous fossa", "Ribs 3-5", "I don't know"], "answer": "a"},
    {"question": "The Supraspinatus starts from the _______.", "options": ["Infraspinous fossa", "Supraspinous fossa of scapula", "Subscapular fossa", "I don't know"], "answer": "b"},
    {"question": "The Infraspinatus starts from the _______.", "options": ["Supraspinous fossa", "Lateral border of scapula", "Infraspinous fossa of scapula", "I don't know"], "answer": "c"},
    {"question": "The Teres Minor starts from the _______.", "options": ["Lateral border of scapula", "Infraspinous fossa", "Subscapular fossa", "I don't know"], "answer": "a"},
    {"question": "The Subscapularis starts from the _______.", "options": ["Supraspinous fossa", "Subscapular fossa of scapula", "Ribs 1-8", "I don't know"], "answer": "b"},
    {"question": "The Biceps Brachii starts from the _______.", "options": ["Infraglenoid tubercle", "Supraglenoid tubercle and coracoid process", "Lateral epicondyle", "I don't know"], "answer": "b"},
    {"question": "The Triceps Brachii starts from the _______.", "options": ["Infraglenoid tubercle and humerus", "Supraglenoid tubercle", "Medial epicondyle", "I don't know"], "answer": "a"},
    {"question": "The Brachialis starts from the _______.", "options": ["Lateral supracondylar ridge", "Anterior distal shaft of humerus", "Coracoid process", "I don't know"], "answer": "b"},
    {"question": "The Brachioradialis starts from the _______.", "options": ["Medial epicondyle", "Coronoid process", "Lateral supracondylar ridge of humerus", "I don't know"], "answer": "c"},
    {"question": "The Pronator Teres starts from the _______.", "options": ["Medial epicondyle and coronoid process", "Lateral epicondyle", "Styloid process", "I don't know"], "answer": "a"},
    {"question": "The Extensor Digitorum starts from the _______.", "options": ["Medial epicondyle", "Lateral epicondyle of humerus", "Coracoid process", "I don't know"], "answer": "b"},
    {"question": "The Flexor Carpi Ulnaris starts from the _______.", "options": ["Lateral epicondyle", "Pisiform", "Medial epicondyle of humerus", "I don't know"], "answer": "c"},
    {"question": "The Deltoid starts from the _______.", "options": ["Clavicle, scapular spine, acromion", "Infraglenoid tubercle", "Ribs 3-5", "I don't know"], "answer": "a"},
    {"question": "The Coracobrachialis starts from the _______.", "options": ["Supraglenoid tubercle", "Coracoid process", "Lateral supracondylar ridge", "I don't know"], "answer": "b"},
    {"question": "The Psoas Major starts from the _______.", "options": ["Vertebral bodies T12-L5", "Iliac crest", "Ischial tuberosity", "I don't know"], "answer": "a"},
    {"question": "The Iliacus starts from the _______.", "options": ["Vertebral bodies T12-L5", "Iliac crest and fossa, sacral ala", "Pubis", "I don't know"], "answer": "b"},
    {"question": "The Tensor Fascia Latae starts from the _______.", "options": ["Ischial tuberosity", "Pubis", "Iliac crest and anterior superior spine", "I don't know"], "answer": "c"},
    {"question": "The Gluteus Medius starts from the _______.", "options": ["Ilium", "Sacrum", "Ischial tuberosity", "I don't know"], "answer": "a"},
    {"question": "The Gluteus Minimus starts from the _______.", "options": ["Sacrum", "Ilium", "Coccyx", "I don't know"], "answer": "b"},
    {"question": "The Gluteus Maximus starts from the _______.", "options": ["Iliac crest", "Ilium, sacrum, coccyx", "Pubis", "I don't know"], "answer": "b"},
    {"question": "The Sartorius starts from the _______.", "options": ["On and below anterior superior spine of ilium", "Ischial tuberosity", "Linea aspera", "I don't know"], "answer": "a"},
    {"question": "The Gracilis starts from the _______.", "options": ["Ischial tuberosity", "Pubis", "Iliac crest", "I don't know"], "answer": "b"},
    {"question": "The Semimembranosus starts from the _______.", "options": ["Pubis", "Ischial tuberosity", "Linea aspera", "I don't know"], "answer": "b"},
    {"question": "The Semitendinosus starts from the _______.", "options": ["Ischial tuberosity", "Pubis", "Iliac crest", "I don't know"], "answer": "a"},
    {"question": "The Quadriceps Femoris: Vastus Intermedius starts from the _______.", "options": ["Anterior and lateral shaft of femur", "Linea aspera", "Greater trochanter", "I don't know"], "answer": "a"},
    {"question": "The Quadriceps Femoris: Rectus Femoris starts from the _______.", "options": ["Linea aspera", "Anterior inferior spine of ilium", "Greater trochanter", "I don't know"], "answer": "b"},
    {"question": "The Quadriceps Femoris: Vastus Lateralis starts from the _______.", "options": ["Linea aspera", "Anterior shaft of femur", "Greater trochanter and linea aspera", "I don't know"], "answer": "c"},
    {"question": "The Quadriceps Femoris: Vastus Medialis starts from the _______.", "options": ["Linea aspera", "Greater trochanter", "Anterior shaft of femur", "I don't know"], "answer": "a"},
    {"question": "The Adductor Longus starts from the _______.", "options": ["Pubis", "Ischial tuberosity", "Iliac crest", "I don't know"], "answer": "a"},
    {"question": "The Adductor Brevis starts from the _______.", "options": ["Ischial tuberosity", "Pubis", "Iliac crest", "I don't know"], "answer": "b"},
    {"question": "The Pectineus starts from the _______.", "options": ["Pubis", "Ischial tuberosity", "Linea aspera", "I don't know"], "answer": "a"},
    {"question": "The Adductor Magnus starts from the _______.", "options": ["Ischial tuberosity", "Ischium and pubis", "Iliac crest", "I don't know"], "answer": "b"},
    {"question": "The Tibialis Anterior starts from the _______.", "options": ["Lateral tibia, interosseous membrane", "Shaft of fibula", "Proximal tibia", "I don't know"], "answer": "a"},
    {"question": "The Extensor Hallucis Longus starts from the _______.", "options": ["Shaft of fibula", "Medial aspect of fibula, interosseous membrane", "Lateral condyle of tibia", "I don't know"], "answer": "b"},
    {"question": "The Extensor Digitorum Longus starts from the _______.", "options": ["Shaft of fibula", "Proximal tibia", "Lateral condyle of tibia, shaft of fibula", "I don't know"], "answer": "c"},
    {"question": "The Fibularis Tertius starts from the _______.", "options": ["Distal shaft of fibula and interosseous membrane", "Proximal fibula", "Lateral tibia", "I don't know"], "answer": "a"},
    {"question": "The Gastrocnemius starts from the _______.", "options": ["Lateral condyle and popliteal surface of femur", "Proximal tibia", "Shaft of fibula", "I don't know"], "answer": "a"},
    {"question": "The Soleus starts from the _______.", "options": ["Shaft of fibula", "Proximal third of tibia and fibula", "Lateral condyle of tibia", "I don't know"], "answer": "b"},
    {"question": "The Tibialis Posterior starts from the _______.", "options": ["Proximal half of tibia, fibula, interosseous membrane", "Shaft of fibula", "Lateral condyle of tibia", "I don't know"], "answer": "a"},
    {"question": "The Flexor Hallucis Longus starts from the _______.", "options": ["Proximal tibia", "Shaft of fibula", "Midshaft of tibia", "I don't know"], "answer": "b"},
    {"question": "The Flexor Digitorum Longus starts from the _______.", "options": ["Midshaft of tibia", "Proximal fibula", "Lateral condyle of tibia", "I don't know"], "answer": "a"},
    {"question": "The Fibularis Longus starts from the _______.", "options": ["Proximal half of fibula, lateral condyle of tibia", "Shaft of tibia", "Distal fibula", "I don't know"], "answer": "a"}
]

# Function to run the quiz
def run_quiz():
    score = 0
    idk_count = 0  # Track "I don't know" responses
    total_questions = len(quiz_data)

    # Shuffle the questions
    random.shuffle(quiz_data)

    print("Welcome to the Muscle Anatomy Quiz!")
    print("For each question, enter 'a', 'b', 'c', or 'd' to select your answer.")
    print("Option 'd' is 'I don't know' and won't affect your score.\n")

    for i, item in enumerate(quiz_data, 1):
        # Create a copy of the first three options and shuffle them
        shuffled_options = item['options'][:3]
        random.shuffle(shuffled_options)
        # Add "I don't know" as the fixed fourth option
        shuffled_options.append("I don't know")

        # Determine the new correct answer index after shuffling
        original_answer_idx = ord(item['answer']) - ord('a')
        correct_option = item['options'][original_answer_idx]
        new_answer = chr(ord('a') + shuffled_options.index(correct_option))

        print(f"Question {i}: {item['question']}")
        print(f"a) {shuffled_options[0]}")
        print(f"b) {shuffled_options[1]}")
        print(f"c) {shuffled_options[2]}")
        print(f"d) {shuffled_options[3]}")

        while True:
            answer = input("Your answer: ").strip().lower()
            if answer in ['a', 'b', 'c', 'd']:
               break
            print("Invalid input. Please enter 'a', 'b', 'c', or 'd'.")

        if answer == 'd':
            idk_count += 1
            print(f"You chose 'I don't know'. The correct answer was '{new_answer}' ({correct_option}).\n")
        elif answer == new_answer:
            score += 1
            print("Correct!\n")
        else:
            print(f"Wrong. The correct answer was '{new_answer}' ({correct_option}).\n")

    # Display final results
    attempted_questions = total_questions - idk_count
    percentage = (score / total_questions) * 100 if total_questions > 0 else 0
    print(f"Quiz completed!")
    print(f"Score: {score}/{total_questions} ({percentage:.2f}%)")
    print(f"Questions attempted: {attempted_questions}/{total_questions}")
    print(f"'I don't know' chosen: {idk_count} times")
    if percentage == 100 and idk_count == 0:
        print("Perfect score! Excellent work!")
    elif percentage >= 70 and idk_count < total_questions / 2:
        print("Good job!")
    else:
        print("Keep studying those muscles!")

# Run the quiz
if __name__ == "__main__":
    run_quiz()