mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 16:57:31 +01:00
144 lines
5.2 KiB
Plaintext
144 lines
5.2 KiB
Plaintext
PythonCommandAmpersand = "&"
|
|
PythonCommandLF = "\\n"
|
|
PythonCommandPercent = "%"
|
|
PythonCommandPound = "#"
|
|
PythonCommandSingleQuote = "'x'"
|
|
PythonCommandSymbolExp = "^"
|
|
PythonCommandTab = "\\t"
|
|
PythonCommandVerticalBar = "|"
|
|
PythonCommand1J = "1j"
|
|
PythonCommandAbs = "abs(x)"
|
|
PythonCommandAcos = "acos(x)"
|
|
PythonCommandAcosh = "acosh(x)"
|
|
PythonCommandAsin = "asin(x)"
|
|
PythonCommandAsinh = "asinh(x)"
|
|
PythonCommandAtan = "atan(x)"
|
|
PythonCommandAtan2 = "atan2(y,x)"
|
|
PythonCommandAtanh = "atanh(x)"
|
|
PythonCommandBin = "bin(x)"
|
|
PythonCommandCeil = "ceil(x)"
|
|
PythonCommandChoice = "choice(list)"
|
|
PythonCommandCmathFunction = "cmath.function"
|
|
PythonCommandCmathFunctionWithoutArg = "cmath.\x11"
|
|
PythonCommandColor = "color(r,g,b)"
|
|
PythonCommandComplex = "complex(a,b)"
|
|
PythonCommandConstantPi = "pi"
|
|
PythonCommandCopySign = "copysign(x,y)"
|
|
PythonCommandCos = "cos(x)"
|
|
PythonCommandCosComplex = "cos(z)"
|
|
PythonCommandCosh = "cosh(x)"
|
|
PythonCommandDegrees = "degrees(x)"
|
|
PythonCommandDivMod = "divmod(a,b)"
|
|
PythonCommandDrawString = "draw_string(\"text\",x,y)"
|
|
PythonCommandConstantE = "e"
|
|
PythonCommandErf = "erf(x)"
|
|
PythonCommandErfc = "erfc(x)"
|
|
PythonCommandEval = "eval(\"expression\")"
|
|
PythonCommandExp = "exp(x)"
|
|
PythonCommandExpComplex = "exp(z)"
|
|
PythonCommandExpm1 = "expm1(x)"
|
|
PythonCommandFabs = "fabs(x)"
|
|
PythonCommandFillRect = "fill_rect(x,y,width,height,color)"
|
|
PythonCommandFloat = "float(x)"
|
|
PythonCommandFloor = "floor(x)"
|
|
PythonCommandFmod = "fmod(a,b)"
|
|
PythonCommandFrExp = "frexp(x)"
|
|
PythonCommandGamma = "gamma(x)"
|
|
PythonCommandGetPixel = "get_pixel(x,y)"
|
|
PythonCommandGetrandbits = "getrandbits(k)"
|
|
PythonCommandHex = "hex(x)"
|
|
PythonCommandImag = "z.imag"
|
|
PythonCommandImagWithoutArg = "\x11.imag"
|
|
PythonCommandImportFromCmath = "from cmath import *"
|
|
PythonCommandImportFromMath = "from math import *"
|
|
PythonCommandImportFromKandinsky = "from kandinsky import *"
|
|
PythonCommandImportFromRandom = "from random import *"
|
|
PythonCommandImportFromTurtle = "from turtle import *"
|
|
PythonCommandImportCmath = "import cmath"
|
|
PythonCommandImportKandinsky = "import kandinsky"
|
|
PythonCommandImportRandom = "import random"
|
|
PythonCommandImportMath = "import math"
|
|
PythonCommandImportTurtle = "import turtle"
|
|
PythonCommandInput = "input(\"text\")"
|
|
PythonCommandInt = "int(x)"
|
|
PythonCommandIsFinite = "isfinite(x)"
|
|
PythonCommandIsInfinite = "isinf(x)"
|
|
PythonCommandIsNaN = "isnan(x)"
|
|
PythonCommandKandinskyFunction = "kandinsky.function"
|
|
PythonCommandKandinskyFunctionWithoutArg = "kandinsky.\x11"
|
|
PythonCommandLdexp = "ldexp(x,i)"
|
|
PythonCommandLength = "len(object)"
|
|
PythonCommandLgamma = "lgamma(x)"
|
|
PythonCommandLog = "log(x,a)"
|
|
PythonCommandLog10 = "log10(x)"
|
|
PythonCommandLog2 = "log2(x)"
|
|
PythonCommandLogComplex = "log(z,a)"
|
|
PythonCommandMathFunction = "math.function"
|
|
PythonCommandMathFunctionWithoutArg = "math.\x11"
|
|
PythonCommandMax = "max(list)"
|
|
PythonCommandMin = "min(list)"
|
|
PythonCommandModf = "modf(x)"
|
|
PythonCommandOct = "oct(x)"
|
|
PythonCommandPhase = "phase(z)"
|
|
PythonCommandPolar = "polar(z)"
|
|
PythonCommandPower = "pow(x,y)"
|
|
PythonCommandPrint = "print(object)"
|
|
PythonCommandRadians = "radians(x)"
|
|
PythonCommandRandint = "randint(a,b)"
|
|
PythonCommandRandom = "random()"
|
|
PythonCommandRandomFunction = "random.function"
|
|
PythonCommandRandomFunctionWithoutArg = "random.\x11"
|
|
PythonCommandRandrange = "randrange(start, stop)"
|
|
PythonCommandRangeStartStop = "range(start, stop)"
|
|
PythonCommandRangeStop = "range(stop)"
|
|
PythonCommandReal = "z.real"
|
|
PythonCommandRealWithoutArg = "\x11.real"
|
|
PythonCommandRect = "rect(r, arg)"
|
|
PythonCommandRound = "round(x, n)"
|
|
PythonCommandSeed = "seed(x)"
|
|
PythonCommandSetPixel = "set_pixel(x,y,color)"
|
|
PythonCommandSin = "sin(x)"
|
|
PythonCommandSinComplex = "sin(z)"
|
|
PythonCommandSinh = "sinh(x)"
|
|
PythonCommandSorted = "sorted(list)"
|
|
PythonCommandSqrt = "sqrt(x)"
|
|
PythonCommandSqrtComplex = "sqrt(z)"
|
|
PythonCommandSum = "sum(list)"
|
|
PythonCommandTan = "tan(x)"
|
|
PythonCommandTanh = "tanh(x)"
|
|
PythonCommandTrunc = "trunc(x)"
|
|
PythonCommandTurtleFunction = "turtle.function"
|
|
PythonCommandTurtleFunctionWithoutArg = "turtle.\x11"
|
|
PythonCommandUniform = "uniform(a,b)"
|
|
PythonTurtleCommandBackward = "backward(x)"
|
|
PythonTurtleCommandBlack = "'black'"
|
|
PythonTurtleCommandBlue = "'blue'"
|
|
PythonTurtleCommandBrown = "'brown'"
|
|
PythonTurtleCommandCircle = "circle(r)"
|
|
PythonTurtleCommandColor = "color('c')/color(r,g,b)"
|
|
PythonTurtleCommandColorWithoutArg = "color(\x11)"
|
|
PythonTurtleCommandForward = "forward(x)"
|
|
PythonTurtleCommandGoto = "goto(x,y)"
|
|
PythonTurtleCommandGreen = "'green'"
|
|
PythonTurtleCommandGrey = "'grey'"
|
|
PythonTurtleCommandHeading = "heading()"
|
|
PythonTurtleCommandHideturtle = "hideturtle()"
|
|
PythonTurtleCommandIsdown= "isdown()"
|
|
PythonTurtleCommandLeft = "left(a)"
|
|
PythonTurtleCommandOrange = "'orange'"
|
|
PythonTurtleCommandPendown = "pendown()"
|
|
PythonTurtleCommandPensize = "pensize(x)"
|
|
PythonTurtleCommandPenup = "penup()"
|
|
PythonTurtleCommandPink = "'pink'"
|
|
PythonTurtleCommandPosition = "position()"
|
|
PythonTurtleCommandPurple = "'purple'"
|
|
PythonTurtleCommandRed = "'red'"
|
|
PythonTurtleCommandReset = "reset()"
|
|
PythonTurtleCommandRight = "right(a)"
|
|
PythonTurtleCommandSetheading = "setheading(a)"
|
|
PythonTurtleCommandSetposition = "setposition(x, [y])"
|
|
PythonTurtleCommandShowturtle = "showturtle()"
|
|
PythonTurtleCommandSpeed = "speed(x)"
|
|
PythonTurtleCommandWhite = "'white'"
|
|
PythonTurtleCommandYellow = "'yellow'"
|