Sign Up

Have an account? Sign In Now

Sign In

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

Sorry, you do not have permission to ask a question, You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here
Sign InSign Up

SIKSHAPATH

SIKSHAPATH Logo SIKSHAPATH Logo

SIKSHAPATH Navigation

  • Home
  • Questions
  • Blog
    • Computer Science(CSE)
    • NPTEL
    • Startup
  • Shop
    • Internshala Answers
Search
Ask A Question

Mobile menu

Close
Ask A Question
  • Home
  • Questions
  • Blog
    • Computer Science(CSE)
    • NPTEL
    • Startup
  • Shop
    • Internshala Answers
  • About
    1. Asked: February 18, 2022In: Python

      Write a python program to print Multiplication tables from 2 to 20 whether table values entered by user using Simple …

      BIKESH KUMAR
      BIKESH KUMAR
      Added an answer on March 6, 2023 at 8:49 pm

      Simple function: def print_multiplication_table(): for i in range(2, 21): print("Multiplication Table of", i) for j in range(1, 11): print(i, "x", j, "=", i*j) print("\n") print_multiplication_table()   Parameterized function: def print_multiplication_table(table): print("Multiplication Table oRead more

      1. Simple function:

      def print_multiplication_table():
      for i in range(2, 21):
      print(“Multiplication Table of”, i)
      for j in range(1, 11):
      print(i, “x”, j, “=”, i*j)
      print(“\n”)

      print_multiplication_table()

       

      1. Parameterized function:

      def print_multiplication_table(table):
      print(“Multiplication Table of”, table)
      for i in range(1, 11):
      print(table, “x”, i, “=”, table*i)
      print(“\n”)

      for i in range(2, 21):
      print_multiplication_table(i)

       

      1. Return type with function:

      def get_multiplication_table(table):
      table_list = []
      for i in range(1, 11):
      table_list.append(table*i)
      return table_list

      for i in range(2, 21):
      table = get_multiplication_table(i)
      print(“Multiplication Table of”, i)
      for j in range(10):
      print(i, “x”, j+1, “=”, table[j])
      print(“\n”)

       

      1. Return type with parameterized function:

      def get_multiplication_table(table):
      table_list = []
      for i in range(1, 11):
      table_list.append(table*i)
      return table_list

      def print_multiplication_table(table):
      table = get_multiplication_table(table)
      print(“Multiplication Table of”, table)
      for i in range(10):
      print(table[i])
      print(“\n”)

      for i in range(2, 21):
      print_multiplication_table(i)

      See less
        • 0
      • Share
        Share
        • Share on WhatsApp
        • Share on Facebook
        • Share on Twitter
        • Share on LinkedIn
    2. Asked: February 18, 2022In: Python

      Write a python program to calculate area of 10 different circles. Given the pie = 22/7 and radius of the …

      BIKESH KUMAR
      BIKESH KUMAR
      Added an answer on March 5, 2023 at 2:27 pm
      This answer was edited.

      1.SIMPLE FUNCTION def calculate_area():pie = 22/7for i in range(10):radius = float(input("Enter the radius of the circle: "))area = pie * radius**2print("The area of the circle with radius", radius, "is", area) calculate_area() 2. PARAMETERIZED FUNCTION def calculate_area(radius):pie = 22/7area = piRead more

      1.SIMPLE FUNCTION

      def calculate_area():
      pie = 22/7
      for i in range(10):
      radius = float(input(“Enter the radius of the circle: “))
      area = pie * radius**2
      print(“The area of the circle with radius”, radius, “is”, area)

      calculate_area()

      2. PARAMETERIZED FUNCTION

      def calculate_area(radius):
      pie = 22/7
      area = pie * radius**2
      return area

      for i in range(10):
      radius = float(input(“Enter the radius of the circle: “))
      area = calculate_area(radius)
      print(“The area of the circle with radius”, radius, “is”, area)

      3. RETURN TYPE WITH FUNCTION

      def calculate_area(radius):
      pie = 22/7
      area = pie * radius**2
      return area

      for i in range(10):
      radius = float(input(“Enter the radius of the circle: “))
      area = calculate_area(radius)
      print(“The area of the circle with radius”, radius, “is”, area)

      def get_circle_area(radius_list):
      area_list = []
      for radius in radius_list:
      area = calculate_area(radius)
      area_list.append(area)
      return area_list

      radius_list = []
      for i in range(10):
      radius = float(input(“Enter the radius of the circle: “))
      radius_list.append(radius)

      area_list = get_circle_area(radius_list)
      for i in range(10):
      print(“The area of the circle with radius”, radius_list[i], “is”, area_list[i])

      4. Return type with parameterized function:

       

      def calculate_area(radius):

      pie = 22/7
      area = pie * radius**2
      return area

      def get_circle_area(radius_list):
      area_list = []
      for radius in radius_list:
      area = calculate_area(radius)
      area_list.append(area)
      return area_list

      radius_list = []
      for i in range(10):
      radius = float(input(“Enter the radius of the circle: “))
      radius_list.append(radius)

      area_list = get_circle_area(radius_list)
      for i in range(10):
      print(“The area of the circle with radius”, radius_list[i], “is”, area_list[i])

      See less
        • 0
      • Share
        Share
        • Share on WhatsApp
        • Share on Facebook
        • Share on Twitter
        • Share on LinkedIn

    Sidebar

    store ads

    Stats

    • Questions 1k
    • Answers 1k
    • Posts 149
    • Best Answers 89
    • This Free AI Tool Translates Entire Books in Minute !
    • AI News: 🎬 Hollywood’s AI Studios, 🎓 OpenAI’s Latest Gift to Educators, 🚚 Class8 Bags $22M, 🧠 Google Gemini’s Memory Upgrade
    • AI NEWS: Legal Action Against OpenAI, $16M Paid, & Elon Musk’s Praise from Investor 🤖💰📑 | AI Boosts Cloud Seeding for Water Security 🌱💧
    • AI News: 🎬AI Video Tool Scam Exposed🤯, 🛰️ AI-Powered Drones to Ukraine 😱, Google’s $20M AI Push, Sam Altman Joins SF’s Leadership Team
    • AI News: 🤝 Biden Meets Xi on AI Talks, 💡 Xavier Niel’s Advice for Europe, ♻️ Hong Kong’s Smart Bin Revolution, 🚀 AI x Huawei

    Explore

    • Recent Questions
    • Questions For You
    • Answers With Time
    • Most Visited
    • New Questions
    • Recent Questions With Time

    Footer

    SIKSHAPATH

    Helpful Links

    • Contact
    • Disclaimer
    • Privacy Policy Notice
    • TERMS OF USE
    • FAQs
    • Refund/Cancellation Policy
    • Delivery Policy for Sikshapath

    Follow Us

    © 2021-24 Sikshapath. All Rights Reserved