This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from diagrams import Cluster,Diagram | |
from diagrams.gcp.network import Armor as AR | |
from diagrams.gcp.network import LoadBalancing as LB | |
from diagrams.gcp.compute import ComputeEngine as CE | |
from diagrams.gcp.database import SQL as SQL | |
from diagrams.gcp.compute import KubernetesEngine as GKE | |
from diagrams.k8s.compute import Pod as Pod | |
from diagrams.gcp.storage import Storage as GCS | |
from diagrams.gcp.network import VirtualPrivateCloud as VPC | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2-6 | |
import numpy as np | |
x=list(map(int,input().split(','))) | |
y=list(map(int,input().split(','))) | |
data1 = x#[3, 5, 5, 5, 8, 11, 11, 11, 13] | |
data2 = y#[ 3, 5, 5, 5, 8, 11, 11, 11, 20 ] | |
mean1 = np.mean(data1) | |
mean2 = np.mean(data2) |
OlderNewer