“Multiplikationstabelle in Python” Code-Antworten

Schreiben Sie ein Python -Programm, um die Tabelle einer Nummer zu finden, die Sie mit der Schleife verwenden

a=int(input("enter table number"))
b=int(input("enter the number to which table is to printed"))
i=1
while i<=b:
    print(a,"x",i,"=",a*i)
    i=i+1
Dangerous Dolphin

Multiplikationstabelle Python

# Multiplication table (from 1 to 10) in Python
# To take input from the user
# num = int(input("Display multiplication table of? "))
for i in range(1, 11):
   print(num, 'x', i, '=', num*i)
Jealous Jaguar

Multiplikationstabelle Python

multiplication_table = []
for x in range(0, 100): 
    multiplication_table.append([i*x for i in range(0, 100)])
multiply = multiplication_table
    
multiply[6][6]
# 36
Damarion Abendanon

Multiplikationstabelle in Python

num = int(input("Enter the number: "))

print("****Multiplication table of the number****",)

for i  in range(1,11):
    
    print(str(num) + " X " + str(i) + " = " + str(i*num))
Coding boy Hasya

Multiplikationstabelle Python drucken

# Multiplication table (from 1 to 10) in Python

num = 12

# To take input from the user
# num = int(input("Display multiplication table of? "))

# Iterate 10 times from i = 1 to 10 By AyushG
for i in range(1, 11):
   print(num, 'x', i, '=', num*i)
Techie Ash

Multiplikationstabelle in Python

m = int(input("m: "))
n = int(input("n: "))

for i in range(1, m+1) :
        for j in range(1, n+1) :
            print("%d\t" % (i*j), end="")
        print()
SgtLightning

Ähnliche Antworten wie “Multiplikationstabelle in Python”

Fragen ähnlich wie “Multiplikationstabelle in Python”

Weitere verwandte Antworten zu “Multiplikationstabelle in Python” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen