loops multiplication in python3

Solutions on MaxInterview for loops multiplication in python3 by the best coders in the world

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
showing results for - "loops multiplication in python3"
Salvatore
05 Aug 2016
1#!/bin/python3
2
3import math
4import os
5import random
6import re
7import sys
8
9
10
11if __name__ == '__main__':
12    n = int(input())
13    
14    for i in range(1,11):
15        s = n * i
16        print(n,"x",i,"=",s)
similar questions
queries leading to this page
loops multiplication in python3