This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | """ Maths Quiz - fully working program, combining all 6 components | |
| First version of fully working program, not yet tested for usability | |
| Created by Joseph Wong | |
| 14/08/21 | |
| """ | |
| import random | |
| # Get name function | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | """ Component 6b of Maths Quiz | |
| Ask for input to 20 questions for division, then gives feedback to | |
| the number of correct and incorrect answers. | |
| The level restarts if the attempt at the level was not 100% | |
| Created by Joseph Wong | |
| 12/08/21 | |
| """ | |
| import random | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | """ Component 5 of Maths Quiz v3 | |
| Make the division question into a function | |
| with the random number generator from component 3 | |
| Created by Joseph Wong | |
| 10/08/21 | |
| """ | |
| import random | |
| # Random number generator function | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | """ Component 6a of Maths Quiz | |
| Ask for input to 20 questions for multiplication, then gives feedback to | |
| the number of correct and incorrect answers. | |
| The level restarts if the attempt at the level was not 100% | |
| Created by Joseph Wong | |
| 10/08/21 | |
| """ | |
| import random | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | """ Component 5 of Maths Quiz v3 | |
| Make the division question into a function | |
| with the random number generator from component 3 | |
| Created by Joseph Wong | |
| 10/08/21 | |
| """ | |
| import random | |
| # Random number generator function | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | """ Component 4 of Maths Quiz v3 | |
| Make the multiplication question into a function | |
| with the random number generator from component 3 | |
| Created by Joseph Wong | |
| 10/08/21 | |
| """ | |
| import random | |
| # Random number generator function | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | """ Component 3 of Maths Quiz v3 | |
| Make random number generator into a function | |
| Created by Joseph Wong | |
| 10/08/21 | |
| """ | |
| import random | |
| # Random number generator function | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | """ Component 5 of Maths Quiz v2 | |
| Have the two random number multiply together to give a number to divide | |
| Divide by number 1 to ask for number 2 | |
| Check if the user's answer is correct - include integer check | |
| Created by Joseph Wong | |
| 9/08/21 | |
| """ | |
| # Integer Checker | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | """ Component 5 of Maths Quiz v1 | |
| Have the two random number multiply together to give a number to divide | |
| Divide by number 1 to ask for number 2 | |
| Check if the user's answer is correct | |
| Created by Joseph Wong | |
| 9/08/21 | |
| """ | |
| # From Component 3 | |
| import random | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | """ Component 4 of Maths Quiz v2 | |
| Have the two random number multiply together | |
| to check if the user's answer is correct - include integer check | |
| Created by Joseph Wong | |
| 6/08/21 | |
| """ | |
| # Integer Checker | |