“Convertir Java en Python” Réponses codées

Convertir Java en Python

public class testint
	{
	    public static void main(String[] args)
	    {
	        int a=1;
          	int i=2;
          	int m;
          for(int k=0;k<=8;k++)
          {
            m=a+i;
            System.out.println9"The value is : ", m);
            a=i;
            i=m;
          }
	    }
	}
Witty Walrus

Convertir Java en Python

def extra_search(n, start, destination, traversePaths, trav):
    p = traversePaths[n] #Get possible starts from new starting city
    r = trav.copy() #Get a copy of the previous travelled path from the source
    
    tl = []
    for i in range(len(p)):
        if p[i][1] == start: 
            continue
        elif p[i][1] == destination: 
            route.append(p[i][1])
        else:
            if p[i][1] not in route: 
                route.append(p[i][1])
                route = extra_search(p[i][1], start, destination, traversePaths, route)
            else:
                continue
        
        if len(route) > 0: #Check to see if the route is an empty set(a dead end)
           
            # print("Routes added:", route)
            if isinstance(route[0], int): #Check if the returned possible paths is an array or array of arrays
                tl.append(route)
            else:
                for i in route:
                    tl.append(i)

        route = trav.copy() #Start from the previously travelled path

    return tl
Blue Beetle

Convertir Java en Python

for (var i = 1; i < 2; i++) {
for (var j = 1; j < 3; j++) {
echo j;
}
var i = 0;
}
Attractive Anteater

Convertir Java en Python

import java.util.*;
public class fungsiA {

    public static void main(String args []) throws InterruptedException {
        Scanner sc = new Scanner(System.in);
        int n;
        System.out.print("Masukkan N :");
        n = sc.nextInt();
        long starTime = System.nanoTime();
        for (int i = 1; i <= n; i = i + 2) {
            for (int j = 1; j <= n/2; j++) {
                System.out.println(2);
            }
        }
        long endTime = System.nanoTime();
        long totalTime = (endTime - starTime) / 1000000;
        System.out.println("Total Time : " + totalTime + " milliseconds or " + (totalTime / 1000) + " seconds");
    }
}
Comfortable Chipmunk

Convertir Java en Python

def extra_search(n, start, destination, traversePaths, trav):
    p = traversePaths[n] #Get possible starts from new starting city
    r = trav.copy() #Get a copy of the previous travelled path from the source
    
    tl = []
    for i in range(len(p)):
        if p[i][1] == start: 
            continue
        elif p[i][1] == destination: 
            route.append(p[i][1])
        else:
            if p[i][1] not in route: 
                route.append(p[i][1])
                route = extra_search(p[i][1], start, destination, traversePaths, route)
            else:
                continue
        
        if len(route) > 0: #Check to see if the route is an empty set(a dead end)
           
            # print("Routes added:", route)
            if isinstance(route[0], int): #Check if the returned possible paths is an array or array of arrays
                tl.append(route)
            else:
                for i in route:
                    tl.append(i)

        route = trav.copy() #Start from the previously travelled path

    return tl
Blue Beetle

Convertir le code Python en java

import http
import ssl
from urllib.parse import urlparse
import requests


clientCrt = "<SSL files path>/GDLAPPSPublicCertificate.cer"
clientKey = "<SSL files path>/GDLAPPSPrivateCertificateKey.key"

url = "https://gdlapps.naturesweet.com/ws/simple/getDailyQualityYield"
request_url="/ws/simple/getDailyQualityYield"
method="GET"
headers = {'Content-type': 'application/json'}
body={}

context = ssl.SSLContext()
context.load_cert_chain(certfile=clientCrt,keyfile=clientKey)
connection = http.client.HTTPSConnection(urlparse(url).hostname, port=443, context=context)

connection.request(method=method, url=url,headers=headers,body=body)
response = connection.getresponse()

print(response.status, response.reason)
data = response.read()
print(data)
Paresh Vasani

Réponses similaires à “Convertir Java en Python”

Questions similaires à “Convertir Java en Python”

Plus de réponses similaires à “Convertir Java en Python” dans Java

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code