Git Product home page Git Product logo

sat-raw-score-converter's Introduction

SAT Raw Score Converter

๐Ÿ“โœ๏ธโœŽโœโœ๏ธŽ SAT Scores typically vary by difficulty, in other words, each and every test utilizes a different scoring system. This is just an approximation of what score you'll get. :)

This is the table I used for the convertion:

SAT table

Code (for Python 3)

readingRawScore = int(input("Input your Reading raw score (0-52): "))
if (0 <= readingRawScore <= 52):
    writingRawScore = int(input("Input your Writing and Language raw score (0-44): "))
    if (0 <= writingRawScore <= 44):
        noCalcRawScore = int(input("Input your Math (NO calculator) raw score (0-20): "))
        if (0 <= noCalcRawScore <= 20):
            calcRawScore = int(input("Input your Math (calculator OK) raw score (0-38): "))
            if (0 <= calcRawScore <= 38):

                print("-----------------------------")

                #Calculating the READING RAW score to the READING SAT score
                #Raw score:    0  1  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
                readingSAT = [10,10,10,11,12,13,14,15,16,16,17,18,18,19,20,20,21,21,22,22,23,23,23,24,24,25,25,26,26,27,27,28,28,28,29,29,30,30,31,31,32,32,33,33,34,35,35,36,37,38,39,39,40]
                print("Your SAT Reading score is:", readingSAT[readingRawScore]*10)

                #Calculating the WRITING AND LANGUAGE RAW score to the WRITING AND LANGUAGE SAT score
                #Raw score:    0  1  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
                writingSAT = [10,10,10,10,11,12,13,14,15,16,16,17,18,19,19,20,21,22,23,23,24,24,25,26,26,27,27,28,29,29,30,31,31,32,32,33,33,34,35,36,37,37,38,39,40]
                print("Your SAT Writing and Language score is:", writingSAT[writingRawScore]*10)
                
                #Calculating the MATH RAW score to the MATH SAT score
                mathRawScore = noCalcRawScore + calcRawScore
                #Raw score: 0   1   2   3   4   5   6   7   8   9   10  11  12  13  14  15  16  17  18  19  20  21  22  23  24  25  26  27  28  29  30  31  32  33  34  35  36  37  38  39  40  41  42  43  44  45  46  47  48  49  50  51  52  53  54  55  56  57  58
                mathSAT = [200,200,210,230,250,270,280,300,320,340,350,360,370,390,410,420,430,450,460,470,480,490,500,510,520,530,540,550,560,570,580,590,600,600,610,620,630,640,650,660,670,680,690,700,710,710,720,730,730,740,750,750,760,770,780,790,790,800,800]
                print("Your SAT Math score is:", mathSAT[mathRawScore])

                #Calculating the final score
                english = (readingSAT[readingRawScore] + writingSAT[writingRawScore]) * 10
                math = mathSAT[mathRawScore]
                finalScore = english + math
                print("-----------------------------")
                print("Your SAT Score is:",finalScore)
                print("-----------------------------")


            else:
                print("Error! Enter a score between 0-38! :)")
        else: 
            print("Error! Enter a score between 0-20! :)")
    else:
        print("Error! Enter a score between 0-44! :)")
else:
    print("Error! Enter a score between 0-52! :)")

Contributing

โœ… Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate. ๐Ÿ‘Œ

  1. Fork it (https://github.com/jeremygautama/SAT-Raw-Score-Converter/fork)
  2. Create your feature branch (git checkout -b feature/fooBar)
  3. Commit your changes (git commit -am 'Add some fooBar')
  4. Push to the branch (git push origin feature/fooBar)
  5. Create a new Pull Request

Support

โญ๏ธ Your star means so much. Thank You!

๐Ÿ“ข Help spread the word!!!

sat-raw-score-converter's People

Contributors

ieremy avatar johncassavetes avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

Forkers

ieremy

sat-raw-score-converter's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.