mirror of
https://github.com/DeaDvey/mathgenerator.git
synced 2025-11-28 14:35:23 +01:00
Changed generator names to camelCase
This commit is contained in:
@@ -17,5 +17,5 @@ def quotientofpowersamebaseFunc(maxBase=50, maxPower=10):
|
|||||||
return problem, solution
|
return problem, solution
|
||||||
|
|
||||||
|
|
||||||
quotientofpowersamebase = Generator("Quotient of Powers with Same Base", 82,
|
quotientOfPowerSameBase = Generator("Quotient of Powers with Same Base", 82,
|
||||||
"6^4 / 6^2 = 6^(4-2) = 6^2", "36", quotientofpowersamebaseFunc)
|
"6^4 / 6^2 = 6^(4-2) = 6^2", "36", quotientofpowersamebaseFunc)
|
||||||
|
|||||||
@@ -17,5 +17,5 @@ def quotientofpowersamepowerFunc(maxBase=50, maxPower=10):
|
|||||||
return problem, solution
|
return problem, solution
|
||||||
|
|
||||||
|
|
||||||
quotientofpowersamepower = Generator("Quotient of Powers with Same Power", 83,
|
quotientOfPowerSamePower = Generator("Quotient of Powers with Same Power", 83,
|
||||||
"6^4 / 3^4 = (6/3)^4 = 2^4", "16", quotientofpowersamepowerFunc)
|
"6^4 / 3^4 = (6/3)^4 = 2^4", "16", quotientofpowersamepowerFunc)
|
||||||
|
|||||||
@@ -267,8 +267,8 @@ decimalToHexadeci = Generator("Decimal to Hexadecimal", 79, "Binary of a=",
|
|||||||
"b", deciToHexaFunc)
|
"b", deciToHexaFunc)
|
||||||
percentage = Generator("Percentage of a number", 80, "What is a% of b?",
|
percentage = Generator("Percentage of a number", 80, "What is a% of b?",
|
||||||
"percentage", percentageFunc)
|
"percentage", percentageFunc)
|
||||||
celsiustofahrenheit = Generator("Celsius To Fahrenheit", 81, "(C +(9/5))+32=", "F", celsiustofahrenheitFunc)
|
celsiusToFahrenheit = Generator("Celsius To Fahrenheit", 81, "(C +(9/5))+32=", "F", celsiustofahrenheitFunc)
|
||||||
quotientofpowersamebase = Generator("Quotient of Powers with Same Base", 82,
|
quotientOfPowerSameBase = Generator("Quotient of Powers with Same Base", 82,
|
||||||
"6^4 / 6^2 = 6^(4-2) = 6^2", "36", quotientofpowersamebaseFunc)
|
"6^4 / 6^2 = 6^(4-2) = 6^2", "36", quotientofpowersamebaseFunc)
|
||||||
quotientofpowersamepower = Generator("Quotient of Powers with Same Power", 83,
|
quotientOfPowerSamePower = Generator("Quotient of Powers with Same Power", 83,
|
||||||
"6^4 / 3^4 = (6/3)^4 = 2^4", "16", quotientofpowersamepowerFunc)
|
"6^4 / 3^4 = (6/3)^4 = 2^4", "16", quotientofpowersamepowerFunc)
|
||||||
|
|||||||
Reference in New Issue
Block a user