mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 16:57:31 +01:00
48 lines
2.0 KiB
Plaintext
48 lines
2.0 KiB
Plaintext
MathModule = "math"
|
|
CmathModule = "cmath"
|
|
KandinskyModule = "kandinsky"
|
|
TurtleModule = "turtle"
|
|
ForLoopMenu = "For"
|
|
IfStatementMenu = "If"
|
|
WhileLoopMenu = "While"
|
|
ConditionsMenu = "Conditions"
|
|
ConditionNot = "not "
|
|
ConditionOr = "or "
|
|
ConditionAnd = "and "
|
|
InferiorCondition = "<="
|
|
InferiorConditionWithArg = "x<=y"
|
|
SuperiorCondition = ">="
|
|
SuperiorConditionWithArg = "x>=y"
|
|
InferiorStrictCondition = "<"
|
|
InferiorStrictConditionWithArg = "x<y"
|
|
SuperiorStrictCondition = ">"
|
|
SuperiorStrictConditionWithArg = "x>y"
|
|
NonEqualityCondition = "!="
|
|
NonEqualityConditionWithArg = "x!=y"
|
|
EqualityCondition = "=="
|
|
EqualityConditionWithArg = "x==y"
|
|
WhileLoop = "while ø:\n "
|
|
WhileLoopWithArg = "while condition:\n instruction"
|
|
IfOrIfElseStatement = "if ø or :\n \nelse:\n "
|
|
IfOrIfElseStatementWithArg = "if condition1 or condition2:\n instruction1\nelse:\n instruction2"
|
|
IfAndIfElseStatement = "if ø and :\n \nelse:\n "
|
|
IfAndIfElseStatementWithArg = "if condition1 and condition2:\n instruction1\nelse:\n instruction2"
|
|
IfElifElseStatement = "if ø:\n \nelif :\n \nelse:\n "
|
|
IfElifElseStatementWithArg = "if condition1:\n instruction1\nelif condition2:\n instruction2\nelse:\n instruction3"
|
|
IfThenStatement= "if ø:\n "
|
|
IfThenStatementWithArg = "if condition:\n instruction"
|
|
IfElseStatement = "if ø:\n \nelse:\n "
|
|
IfElseStatementWithArg = "if condition:\n instruction1\nelse:\n instruction2"
|
|
ForInListLoop = "for i in ø:\n "
|
|
ForInListLoopWithArg = "for i in list:\n instruction"
|
|
ForInRange3ArgsLoop = "for i in range(ø,,):\n "
|
|
ForInRange3ArgsLoopWithArg = "for i in range(start, stop, step):\n instruction"
|
|
ForInRange2ArgsLoop = "for i in range(ø,):\n "
|
|
ForInRange2ArgsLoopWithArg = "for i in range(start, stop):\n instruction"
|
|
ForInRange1ArgLoop = "for i in range(ø):\n "
|
|
ForInRange1ArgLoopWithArg = "for i in range(size):\n instruction"
|
|
PythonCommandDef = "def ø():\n "
|
|
PythonCommandDefWithArg = "def function(x):"
|
|
PythonCommandReturn = "return "
|
|
RandomModule = "random"
|