Python en Francais
DOCS
RUN CODE
CREDITS
Documentation
Inbuilt Functions
imprimer(input)
Prints the input
chaine(input)
Convert input into a string
nombre(input)
Convert input into a number
Operators
ajouter(input1,input2)
If both inputs are numbers, adds them together, but if both are strings, return them together
soustraire(input1,input2)
If both inputs are numbers, subtract them
diviser(input1,input2)
If both inputs are numbers, divide them
multiplier(input1,input2)
If both inputs are numbers, multiply them, if one is a number and the other is a string, return the string repeated n amount of times
Variables
To set a variable, just do the same as you normally would in Python: var = val