“convertisseur de code javascript en python” 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

convertisseur de code javascript en python

import java.util.Scanner;
import java.util.Stack;
public class Basket {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
Scanner frinz = new Scanner(System.in);
Stack <String> Basket = new Stack <String>();
String a = "Apple";
String m = "Mango";
String o = "Orange";
String g = "Guava";

System.out.println("Catch and eat any of these fruits:('apple', 'orange', 'mango', 'guava')");
System.out.println("How many fruits would you like to catch: ");
System.out.println("Choose a fruit to catch.Press A, O, M, or G");
int num = frinz.nextInt();
for(int i=1;i<=num;i++) {
	System.out.println("Fruits " + i + " of "+ num );
String f = frinz.next();
	if(f.equals("a")) {
		Basket.push(a);
	}else if(f.equals("m")){
		Basket.push(m);
	}else if(f.equals("o")){
		Basket.push(o);
	}else if(f.equals("g")){
		Basket.push(g);
	}else {
		System.out.println("Not Available");
	}
	}
System.out.println("Your basket now has: "+ Basket);
System.out.println("Press E to eat fruit:");

while(true){
    char e = frinz.next().charAt(0);
    if( e == 'e'){
      Basket.pop();
    }
    if(Basket.isEmpty()){
        
        
        System.out.println("Press E to eat fruit:");
      
        
        System.out.println("No more fruits");
       
          break;
        
          }
          
            System.out.println("Fruit(s) in the basket:" + Basket);
          System.out.println("Press E to eat fruit:");
           
    }
 }
}
Unusual Unicorn

Réponses similaires à “convertisseur de code javascript en python”

Questions similaires à “convertisseur de code javascript en python”

Plus de réponses similaires à “convertisseur de code javascript en python” dans JavaScript

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code