“Gere Python da tabela” Respostas de código

como fazer a tabela usando python

from prettytable import PrettyTable
A = PrettyTable()
A.add_column("Pokimon",["wartortle"])
A.add_column("Type",["Water attack"])
print(A)
Programmer of empires

Gere Python da tabela

def tableNum(num):
    for i in range(1,11):
        print(f'{num} * {i} = {num*i}')
    
tableNum(2)
Suraj Kr Thapa

Respostas semelhantes a “Gere Python da tabela”

Perguntas semelhantes a “Gere Python da tabela”

Mais respostas relacionadas para “Gere Python da tabela” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código