“Phyton do C Converter” Kod odpowiedzi

Phyton do C Converter

import sys

number = int(sys.argv[1])
if not number <= 1:
    for i in range(2, number):
        if (number % i) == 0:
            print("Not prime")
            break
else:
    print("Integer must be greater than 1")
Encouraging Elk

Phyton do C Converter

from __future__ import division
import os
import sys
import glob
import matplotlib.pyplot as plt
import numpy as np
import pandas as pd
%matplotlib inline
%precision 4
plt.style.use('ggplot')
Encouraging Elk

Python konwertera do C

num = input()
xzoj = 0
zoj = 0
fard = 0 
xfard = 0
for i in range(len(num)):
    if int(num[i]) % 2 ==0:
        xzoj +=1
        zoj += int(num[i])
    else :
        xfard +=1
        fard +=int(num[i])
print(zoj / xzoj)
print(fard / xfard)
Open Owl

Odpowiedzi podobne do “Phyton do C Converter”

Pytania podobne do “Phyton do C Converter”

Więcej pokrewnych odpowiedzi na “Phyton do C Converter” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu