“Code python au convertisseur javascript” Réponses codées

Convertir JS en Python en ligne

>>> import js2py
>>> f = js2py.eval_js('function f(x) {return x + x}')
>>> f(2)
4
>>> f()
nan
>>> f(f)
function f(x) { [python code] }function f(x) { [python code] }
mathiasgodwin

Code python au convertisseur javascript

weight, height = eval(input("input weight(kg) and height(m):"))#50,1.6

bmi = weight /height**2

print("Your BMI is {:.1f}".format(bmi))

if bmi < 18.5:

    print("too thin")

elif bmi < 24:

    print("normal")

elif bmi < 27.9:

    print("overweight")

else:

    print("fat")
DONYOR RAKHMATULLAEV

Code python au convertisseur javascript

def expand_jsontree(url, arr):
Subhro Dey

script python to java

print(t) ==> console.log(t)

if expression :     ==>    if(expression){
	do something           	   do something }
elif expression :     ==>    else if(expression){
	do something else              do something else }
else:                 ==     if(expression){
	do a final thing           	   do a final thing }
Haribo27

Réponses similaires à “Code python au convertisseur javascript”

Questions similaires à “Code python au convertisseur javascript”

Plus de réponses similaires à “Code python au convertisseur javascript” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code