Python Online

Schreibe (oder kopiere) in den obigen Editor

a = 5
b = 6 
if a < b:
   print("a ist tatsächlich kleiner als b")
elif a > b:
   print(b/a)
else:
   print(round(a/b,2))
Hilfe


Python on your Server

a=47.541379
b=175.457931
if a > b:
   print(round(a/b,3))
else:
   print(round(b/a,3))

<?php
     echo shell_exec("python py/index.py");
?>

up