
Concept explainers
Python question please include all steps and screenshot of code. Also please provide a docstring, and comments through the code, and test the given examples below. Thanks.
Write a function called qsolver() that solves a quadratic equation: ax2+bx+c=0. Your
function will take three input arguments, a, b, and c, first compute the discriminant d =
b2 - 4*a*c. If d < 0, the equation has no real roots. If d == 0 then the equation has one real
root equal to -b / (2*a). If d > 0, the equation has two roots: (-b - math.sqrt(d)) / (2*a) and
(-b+math.sqrt(d))/(2*a). Your
b, and c, and then return string "No roots", or value ____ , or tuple (____, ____).
>>> qsolver(1,2,1)
-1.0
>>> qsolver(1,0,-1)
(1.0, -1.0)
>>> qsolver(1,0,1)
'No roots'

Trending nowThis is a popular solution!
Step by stepSolved in 3 steps with 1 images

- Complete the rotate_text() function that takes 2 parameters, a string data and an integer n. If n is positive, then the function will shift all the characters in data forward by n positions, with characters at the end of the string being moved to the start of the string. If n is 0 then the text remains the same. For example: rotate_text('abcde', rotate_text('abcde', rotate_text('abcde', 1) would return the string 'eabcd' 3) would return the string 'cdeab' 5) would return the string 'abcde' rotate_text('abcde', 6) would return the string 'eabcd' ... and so on. If n is negative, then the function will shift the characters in data backward by n positions, with characters at the start of the string being moved to the end of the string. For example: rotate text('abcde', -1) would return the string 'bcdea'arrow_forwardFor each of the 4 functions below, Re-code each one to make it programmer friendly, using standard coding conventions, and documentation. Document each function with: a description of what it does (one sentence) and how it works (no more than 3 sentences). Also, provide a precondition: and a postcondition: statement. (See example for the setTime function below.) 1. 2. setTime(int hours, int minutes, int seconds); //Function to set the time //The time is set according to the parameters //Precondition: All parameters are valid numbers, within the range of clock hours (1-12), minutes (0 - 59), and seconds (0 - 59). //Postcondition: The clockType instance stores the hours, minutes and seconds. // If any of the parameters are not valid the time values will be set to zeros. int _1 (double x) {return (int) (x + 0.5); }; int _2 (char* s) {char*t = s; while (*t!='\0') {t++; }return t-s;}; 3. long 3 (int x,int y) {long n=1; for (int i = 0;i < y;i++) {n*=x; } return n; };arrow_forwardplease code in pythonis_phone_num: This Boolean function takes a string and returns True if it is in the formatddd-ddd-dddd, where d is a digit, False otherwise. Example calls:is_phone_num('123-456-7890') --> Trueis_phone_num('123-4556-7890') --> Falseis_phone_num('(123)456-7890') --> Falsearrow_forward
- Python question please include all steps and screenshot of code. Also please provide a docstring, and comments throughout the code, and test the given examples below. Thanks. Write a function diceprob() that takes a possible result r of a roll of pair of dice (i.e. aninteger between 2 and 12) and simulates repeated rolls of a pair of dice until 100 rolls of rhave been obtained. Your function should print how many rolls it took to obtain 100 rollsof r.>>> diceprob(2)It took 4007 rolls to get 100 rolls of 2>>> diceprob(3)It took 1762 rolls to get 100 rolls of 3>>> diceprob(4)It took 1058 rolls to get 100 rolls of 4>>> diceprob(5)It took 1075 rolls to get 100 rolls of 5>>> diceprob(6)It took 760 rolls to get 100 rolls of 6>>> diceprob(7)It took 560 rolls to get 100 rolls of 7arrow_forwardAlert dont submit AI generated answer. Please help fill in the code for the functions.The correct output is shown.arrow_forwardHi please do asap in given term.arrow_forward
- Implement the Function has_error Implement the function according to the specification. Use the test script testcurrency.py to aid your development before checking your answer below. CANNOT USE IF/CONDITIONAL STATEMENTS Instead, you should use what you know about boolean expressions def has_error(json):"""Returns True if the response to a currency query encountered an error. Given a JSON string provided by the web service, this function returns True if thequery failed and there is an error message. For example, if the json is '{"success":false,"src":"","dst":"","error":"Source currency code is invalid."}' then this function returns True (It does NOT return the error message'Source currency code is invalid'). On the other hand if the json is '{"success": true, "src": "2 United States Dollars", "dst": "1.772814 Euros", "error": ""}' then this function returns False. The web server does NOT specify the number of spaces after the colons. The JSON '{"success":true, "src":"2 United…arrow_forwardPython IDLE: How would I write a function for the problem in the attached image?arrow_forwardPython question please include all steps and screenshot of code. Also please provide a docstring, and comments throughout the code, and test the given examples below. Thanks. Develop function fingerprint() that takes text (as a string) as input and creates andreturns the text “fingerprint” obtained as follows: replace each word in the text by itslength (i.e., the number of letters) and concatenate these numbers.>>> fingerprint('This is a secret message')'42167'>>> fingerprint('This message has a different fingerprint')'4731911'>>> fingerprint('Very Short')'45'arrow_forward
- python: Create a function called myemail that takes two arguments: a first name and a last name, and returns a Blue Ridge email address in lower case. The email is made by taking the first letter of the first name and the first 5 letters of the last name and adding 01 and @my.blueridgectc.edu to the end. For example, the function call: myemail('Amelia','Earhart') should return aearha01@my.blueridgectc.eduarrow_forwardPlease complete the exercise as instructed and do not use global variables. As well, please follow the guildines of what the solution cannot have in the second image provided. Thank you!arrow_forward
- 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





