
Database System Concepts
7th Edition
ISBN: 9780078022159
Author: Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher: McGraw-Hill Education
expand_more
expand_more
format_list_bulleted
Question

Transcribed Image Text:Chrome Capture 767x397
Create a python program called code.py.
Write a function named pi_multiples() that takes an integer parameter num. This
function repeatedly asks the user to enter an integer between 2 and 50. Assume the
user will always enter an integer, but if the number is outside this range, the loop
must end. So, for any integer x entered within the range, your function must do the
following; if x is divisible by num (the parameter), it must multiply x by the value of pi
(call it result) and maintain a sum of these results. In every iteration of the loop your
function must print x and the result. And when the loop terminates your function
should return the sum.
To test your function, call pi_multiples() function using any integer number of your
choice (for num) and print the returned value.
Hint: to use the pi value do the following
import math and use math.pi for the value of pi.
frames: 0
0/ 10 secs
Zip your file, name it code.zip, and submit it using the link available in this question.
Expert Solution

arrow_forward
Introduction
Use an infinite loop to accept inputs inside the function and we are printing x and result only if input x is multiple of num or else we are just skipping that particular iteration
Step by stepSolved in 3 steps with 1 images

Knowledge Booster
Similar questions
- Please write a stored function named which will take two inputs (type, keyword).The keyword is a substring used to search the course name. You must use LIKE for the pattern match. If the type is not 1 or 2, return an error message “Please input a valid type.” If the keyword is empty or null, return an error message “Please input a valid keyword.” If there is no course name contains the keyword, return “No course found that contains keyword: zzz.” where zzzis the input keyword. If type is 1, return all course ID: course name that course name contains the keyword. If type is 2, return all course ID: student ID who took the courses that course name contains the keyword. The return should be in one line and your report format must match the test cases. You need to use group_concat() function to merge multiple rows output into one line.arrow_forwardIn this question, you are going to write a function that determines the result of a game of stone, paper, scissors given the choices of player 1 and player 2. In particular, write an rps_winner () function that prompts the user to choose player 1 then the choice of player 2, then it displays the result for player 1 as indicated in the examples given in section 2. You can assume that the user will only enter words: rock, paper or scissors in lowercase. Remember that paper beats stone, let the stone beat the scissors and the scissors beat the paper. If both players do the same choice, we have a draw.arrow_forwardWrite a program that generates random numbers between -25 and 25 by using the randint function. The program will add up the numbers and terminate when the sum of the values becomes zero. The program should contain the following functions: add() : add up the values main(): the function where the program execution should begin and end. randomgen(): a function that returns a number between -25 and 25 A global variable subsetsum that keeps track of the sum The program should output the count of the number of values generated before exiting saying that the subset sum was zero.arrow_forward
- Local variables are known only to the function in which they are declared. Local variables are invisible outside the function in which they are declared. Whether True or False 11. It is possible for any function to return numerous values. Any function type may return multiple values. That's true, right?arrow_forwardIn python write a program that: Function argumentsFor this exercise, you are asked to code three (3) functions that do nothing (execute the pass statement), but accept different combinations of positional arguments, named arguments (mandatory or not) and star or double star arguments, with potentially default values. Your duties must be called respectively: function1,function2,and function3.For function1, it must accept three (3) positional arguments of which two (2) are mandatory and one (1) has a zero (integer) default value. You are free to name these arguments as you see fit. For function2, it must accept one (1) mandatory positional argument and two (2) mandatory arguments named kw1 and kw2 with default values of None and '', respectively. For function3, it must accept an arbitrary number of positional values or named values.arrow_forwardInstructions Write the definition of a function isSenior, that receives an integer parameter and returns true if the parameter's valueis greater or equal to 65, and false otherwise. So, if the parameter's value is 7 or 64 or 12 the function returns false.But if the parameter's value is 69 or 83 or 65 the function returns true.arrow_forward
- Can you use Python programming language to to this question? Thanksarrow_forwarda. Write a function called IsPalindrome that receives a 3-digit number and returns whether it is palindrome or not. b. Write a function, called GCD that receives two parameters n, d, and prints their greatest common divisor a. Now after you created the two functions, you have to write a main function that can call the above functions according to user choice. Write a menu that allows the user to select from the following options 1. To use the IsPalindrome function you have to enter 1. 2. To use the GCD function you have to enter 2. 3. To Exit the program you have to enter 3. [use exit(0)] Once the user select one of the above choices you have to read the value entered by the user and then to call the respective function.arrow_forwardYou should not import anything from an external library in the work , The math module has a function, factorialarrow_forward
- Write a function called under_age that takes two positive integer scalar arguments: • 1. age that represents someone's age, and • 2. limit that represents an age limit. The function returns true if the person is younger than the age limit. If the second argument, limit, is not provided, it defaults to 21. You do not need to check that positive integer scalars. The name of the output argument is too_young.arrow_forwardWrite a function that asks the user how many Fibonacci numbers to generate and then generates them. Make sure to ask the user to enter the number of numbers in the sequence to generate. The Fibonacci sequence is a sequence of numbers where the next number in the sequence is the sum of the previous two numbers in the sequence. The sequence looks like this: 1, 1, 2, 3, 5, 8, 13, § You could assign your input integer to a variable num by num = int(input("How many fib. numbers you want to generate?:")). § You have to consider exceptions, such as the input integer is zero, negative numbers or floats. § Please submit your code and console screenshots to Blackboard. Code containing syntax error will be graded zero. § Example: The prompt asks, “How many fib. numbers you want to generate?arrow_forwardIn python, write a function that receives three parameters: name, weight, and height. The default value for name is James. The function calculates the BMI and returns it. BMI is: weight/(height^2). Weight should be in kg and height should be in meters. For instance, if the weight is 60 kg and the height is 1.7 m, then the BMI should be 20.76. The function should print the name and BMI. The function should return 'BMI is greater than 22' if the MBI is greater than or equal to 22. Otherwise, the function should return 'BMI is less than 22'. Call the function and print its output.arrow_forward
arrow_back_ios
SEE MORE QUESTIONS
arrow_forward_ios
Recommended textbooks for you
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education

Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education

Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON

C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON

Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning

Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education