Multiplication Table

    0

    4

    Mahendra Kumar

    designbeginner

    Printing the Multiplication table of a given number eg: Input:- 5 Output:- 5 * 1 = 5 5 * 2 = 10 5 * 3 = 15 5 * 4 = 20 5 * 5 = 25 5 * 6 = 30 5 * 7 = 35 5 * 8 = 40 5 * 9 = 45 5 * 10 = 50

    # take inputs
    num = int(input('Display multiplication table of: '))
    # print multiplication table
    for i in range(1, 11):
        print ("%d * %d = %d" % (num, i, num * i))
    
    Codiga Logo
    Codiga Hub
    • Rulesets
    • Playground
    • Snippets
    • Cookbooks
    Legal
    • Security
    • Privacy Policy
    • Code Privacy
    • Terms of Service
    soc-2 icon

    We are SOC-2 Compliance Certified

    G2 high performer medal

    Codiga – All rights reserved 2022.