“преобразовать код Python в C -код” Ответ

онлайн -питон в C преобразователь

console.log("Hello World!");
Good Grasshopper

преобразовать код Python в C -код

"""
coronavirus
3
abcde
crnas
onarous

"""
# Iterative Python program to check if a
# string is a subsequence of another string

# Returns true if str1 is a subsequence of str2

def main(str1, str2):
    m = len(str1)
    n = len(str2)

    j = 0 # Index of str1
    i = 0 # Index of str2

    # Traverse both str1 and str2
    # Compare the current character of str2 with
    # first unmatched character of str1
    # If matched, then move ahead in str1

    while j < m and i < n:
        if str1[j] == str2[i]:
            j = j+1
        i = i + 1

    # If all characters of str1 matched,
    # then j is equal to m
    return j == m

# Driver Program
str2 = str(input())
N = int(input())

for i in range(N):
    str1 = str(input())
    if main(str1, str2):
        print("POSITIVE") 
    else:
        print( "NEGATIVE")
Plain Piranha

преобразовать код Python в C -код


# Importing
import sklearn
from sklearn.datasets import load_boston
import pandas as pd
import matplotlib.pyplot as plt
  
# Load the dataset
bos_hou = load_boston()
  
# Create the dataframe
column_name = bos_hou.feature_names
df_boston = pd.DataFrame(bos_hou.data)
df_boston.columns = column_name
df_boston.head()
Yucky Yacare

Ответы похожие на “преобразовать код Python в C -код”

Вопросы похожие на “преобразовать код Python в C -код”

Больше похожих ответов на “преобразовать код Python в C -код” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования