Question

In Python: How many prints will run in the following code? def myfun(var1,var2): print(var1) print(var2) print(var1**var2)...

In Python:

How many prints will run in the following code?

def myfun(var1,var2):
print(var1)
print(var2)
print(var1**var2)
return var1+var2
print(var2**2)
print(var1*var2)

0 0
Add a comment Improve this question Transcribed image text
Answer #1

Only two times.

In Python, if we want to execute any function we must call it.

Here, myfun is function that is being declared in the main function itself.so,unless and until we call it inside a main function it can't be executed.

So,here only prints statements after return statement are executed.

Therefore,only 2 prints will run in this code which are as follows

1.print(var2**2)

2.print(var1*var2)

Add a comment
Know the answer?
Add Answer to:
In Python: How many prints will run in the following code? def myfun(var1,var2): print(var1) print(var2) print(var1**var2)...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • in python Is the following line of code correct? var1, var2, var3 = 1, '2', 3...

    in python Is the following line of code correct? var1, var2, var3 = 1, '2', 3 a. True b. False

  • Homework: 1) Given the following declaration : Int var1 = 9; Int var2 = 6; Int...

    Homework: 1) Given the following declaration : Int var1 = 9; Int var2 = 6; Int *varPtr1 = &var1; Int *varPtr2 = &var2; a) What are the value of var1 and var2 after the following code sequence? Temp = *varPtr1; *varPtr1 = *varPtr2; *varPtr2 = temp;      b) what did this sequence accomplish?

  • Write a python code that takes in an number 0-9 and prints out the word of...

    Write a python code that takes in an number 0-9 and prints out the word of the number. For example 1 would print out one. Below is the skeleton of the code that needs to be filled in. def num2string(num): """ Takes as input a number, num, and returns the corresponding name as a string. Examples: num2string(0) returns "zero", num2string(1)returns "one" Assumes that input is an integer ranging from 0 to 9 """ numString = "" ################################### ### FILL IN...

  • With the code given write python code that prints the probablity of getting a straight in...

    With the code given write python code that prints the probablity of getting a straight in poker when you run 10**5 trails. HELPER CODE: # We will represent cards as a string, e.g., 'AC' will be Ace of Clubs # Denominations: 2, ..., 10, 'J' = Jack, 'Q' = Queen, 'K' = King, 'A' = Ace Denominations = ['2','3','4','5','6','7','8','9','10','J','Q','K','A'] # Suits 'S' = Spades, 'H' = Hearts, 'D' = Diamonds, 'C' = Clubs Suits = ['C', 'H', 'S', 'D'] #...

  • How do I make my code print out the text in the ServiceNotifier class? Python Code:...

    How do I make my code print out the text in the ServiceNotifier class? Python Code: class ServiceNotifier: #Subject responsible for notifying registered observer objects    Observer = [Email, SMS, Phone]       def attach(self):    #add new observer        Observer.append(insertnewobserverhere)    def dettach(self):    #remove an observer        Observer.pop(insertnewobserverhere)    def servicenotifier(self):        for observers in Observer:            print("Due to the forecast for tomorrow, all university and campus operations will be closed.")       ...

  • using the following solve using python and use the code at bottom of page to run...

    using the following solve using python and use the code at bottom of page to run test MUST PAST ALL TESTS def if_function(condition, true_result, false_result): """Return true_result if condition is a true value, and false_result otherwise. >>> if_function(True, 2, 3) 2 >>> if_function(False, 2, 3) 3 >>> if_function(3==2, 3+2, 3-2) 1 >>> if_function(3>2, 3+2, 3-2) 5 """ if condition: return true_result else: return false_result def with_if_statement(): """ >>> with_if_statement() 1 """ if c(): return t() else: return f() def with_if_function():...

  • Consider the following AVR Assembly Language Code which is passed through an assembler. .include "m324Adef.inc"     jmp RESET     jmp HANDLER_1 .dseg var1: .BYTE 2 var2: .BYTE 6 .cseg cons...

    Consider the following AVR Assembly Language Code which is passed through an assembler. .include "m324Adef.inc"     jmp RESET     jmp HANDLER_1 .dseg var1: .BYTE 2 var2: .BYTE 6 .cseg const: .DB 0xAA, 0xCC, 0xDD reset:     ldi ZL, low(var1)     ldi ZH, high(var1)     ldi r17, 0xBB     st Z, r17     ldi ZL, low(const<<1)     ldi ZH, high(const<<1)     lpm     jmp mainloop .dseg var3: .BYTE 4 .cseg .org 0x15 mainloop:     ldi r20, 0xF0     ... Determine the segments and values of each of the following symbols. (Enter the segment...

  • (python please!) [21] The following code demonstrates the concept of method class Employee: def _init__(self): def...

    (python please!) [21] The following code demonstrates the concept of method class Employee: def _init__(self): def bonus(self): return self.salary * 0.05 class Staff(Employee): def __init__(self): def bonus(self): return self.salary * 0.10

  • Solve using C programming 3. lf you are given this code. #include <stdio.h> int main() int...

    Solve using C programming 3. lf you are given this code. #include <stdio.h> int main() int var1, var2; int sum; printf("Enter number 1:\n "); scanf("%d",&var1); printf("Enter number 2:In ); scanf("%d",&var2); sum-var1+var2; printf ("Vnsum of two entered numbers : %d", //printf ("Output: %d", res); sum); return e; Modify this code by creating a function called "addition". Make the arguments of the functions numberl and number 2. Add the two values in the function. Return a value called "result". Print "result" in...

  • convert this python code to c++ code def sort(a,b): if a > b: return b,a else:...

    convert this python code to c++ code def sort(a,b): if a > b: return b,a else: return a,b def main(): set1 = input('Enter the first pair of integers: ') set2 = input('Enter the second pair of integers: ') set3 = input('Enter the third pair of integers: ') set1 = set1.split(',') set1_0 = int(set1[0]) set1_1 = int(set1[1]) set2 = set2.split(',') set2_0 = int(set2[0]) set2_1 = int(set2[1]) set3 = set3.split(',') set3_0 = int(set3[0]) set3_1 = int(set3[1])    print(sort(set1_0,set1_1)) print(sort(set2_0,set2_1)) print(sort(set3_0,set3_1))

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT