Write a Python Program to Print Multiplication Table From 1 to 10

preview_player
Показать описание
Hi, In this video I tried to explain you about how to Write a Python Program to Print Multiplication Table From 1 to 10

Python Scripts
======================

Python Functions Solved
==========================

Python Programs Solved
============================

Code
=========
for x in range(1, 11):
print("Multiplication Table of %d is..." % x)
for y in range(1, 11):
print(x, "*", y, "=", x * y)

Keywords
====================
Рекомендации по теме
Комментарии
Автор

Thank you
How can I make it in a horizontal way not vertical as it displays in the terminals

OlabisiAfolabi