Skip to content

The Zaxy calculator is the first project by Hopenodream, inspired during math class when I used python to do a math problem. This calculator aims to be replete with most complex mathematical calculations to help you do your homework ;);););)

License

Notifications You must be signed in to change notification settings

Hopenodream/Zaxy

Repository files navigation

Welcome to Zaxy, an advanced calculator by a python beginner

Easy to use: All you need to do is select your desired operation, enter a few values the problem will provide you with, and the caculator returns answers you need to solve the problem

Open-source: If you feel the need to add more operations, the project is organized in a way where operations could easily be added

How to add operations:

  1. Figure out an equation for each of the variables in a function
  2. Add inputs for the values in opearations.py i.g.
    var.aSub1 = float(input('whats the first value in the sequence>>>'))
    var.aSubN = float(input('whats the value of A given an index of n>>>'))
    var.n = int(input('value of n for A sub n>>>'))
  1. Add missing variable detection
    if not var.aSub1:
        a_sub_1_missing()
        find_a_1()
        pass
    if not var.d:
        change_missing()
        find_common_change()
        pass
  1. Add inputs for finding the missing variables in the top section of missing_variables.py
    def a_sub_1_missing():
      if var.selection == var.operations[0] or var.operations[1]:  # if selection is arithmetic
          if not var.d:
              var.d = float(input('common difference>>>'))
              pass
          if not var.aSubX:
              var.aSubX = float(input('a sub x >>>'))
              pass
          if not var.x:
              var.x = int(input('value of x >>>'))
              pass
  1. Add calculations for each variable in the bottom section of missing_variables.py
    if var.selection == var.operaions[0] or var.operations[1]:
        var.aSub1 = var.aSubX + var.d * (1 - var.x)

Contact me

  • Twitter - @Deathbethecat
  • Discord - @Deathbe9500

About

The Zaxy calculator is the first project by Hopenodream, inspired during math class when I used python to do a math problem. This calculator aims to be replete with most complex mathematical calculations to help you do your homework ;);););)

Topics

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages