Question

Using the Python to do int operators +, -, *, //, and ** (not %), and...

Using the Python to do int operators +, -, *, //, and ** (not %), and the numbers 2, 3, 4, and 5, and an expression

that uses all four numbers exactly once, uses any three of the operators exactly once, and evaluates to 26.

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

a=2

b=3

c=4

d=5

result=d**a-b+c

# first d**a is evaluated and it is having highest precedence 5**2=25 and +,- are having same prioirity

so its associativity is from left to right. Therefore 25-b=25-3=22+c=22+4=26

print(result)

Add a comment
Know the answer?
Add Answer to:
Using the Python to do int operators +, -, *, //, and ** (not %), and...
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
  • Please answer all questions I. Give an example of 2. List operators for arithmetic expressions in...

    Please answer all questions I. Give an example of 2. List operators for arithmetic expressions in python. 3 Give an eample on expression in python 4. List operators for rational/boolean expression in python. 5. Is there any type conversion in the following expression, and why? 9/3.0

  • 1. Using logical operators modify the following Python "if" statement to print ("AND operator condition worked")?...

    1. Using logical operators modify the following Python "if" statement to print ("AND operator condition worked")? x=2 y=3 if (x<=2 or y>=3) and (x>2 or y<2): print("AND operator condition worked") else: print("it doesn't work") 2. Write a program that asks user for five numbers and returns the largest of them. Do not use max function built in python.

  • We as humans write math expression in infix notation, e.g. 5 + 2 (the operators are...

    We as humans write math expression in infix notation, e.g. 5 + 2 (the operators are written in-between the operands). In a computer’s language, however, it is preferred to have the operators on the right side of the operands, i.e. 5 2 +. For more complex expressions that include parenthesis and multiple operators, a compiler has to convert the expression into postfix first and then evaluate the resulting postfix. Write a program that takes an “infix” expression as input, uses...

  • Write a Python program (special_sum.py) that calculate a special sum of 4 numbers, all int. The...

    Write a Python program (special_sum.py) that calculate a special sum of 4 numbers, all int. The rule for this special sum is as follow: If one of the entered numbers is 17, then it does not count towards the sum and the numbers entered after it do not count. For full credit, you must use function. Your function should have 4 int as parameters, and returns the special sum (as an int). Call this function specialsum and use main program:...

  • 3. Using position and momentum operators prove that <xp> = -<px> = ihbar/2 for the infinite...

    3. Using position and momentum operators prove that <xp> = -<px> = ihbar/2 for the infinite potential energy well wavefunctions. 4. Consider two operators defined as A+ and A- any help with 3 and 4 would be greatly appreciated!!! 3. Using position and momentum operators prove that (xp) = -(p.c) = for the infinite potential energy well wavefunctions. 4. Consider two operators defined as A+ = a (- + oʻx) and A- = a (-de-a²x), where a = w and...

  • Python: using a stack, implement a function that takes in an arithmetic expression, and evaluates it,...

    Python: using a stack, implement a function that takes in an arithmetic expression, and evaluates it, supported operations are + and -, which have same precedence. Note: one way to do it is to scan the entire expr pushing numbers onto val-stack and operations on op-stack until tokens in expr are done. Then, use a loop to pop two numbers from val-stack and one operation from op-stack, evaluate, and push results back to val-stack, until op-stack is empty.

  • Python Issue Postfix notation (also known as Reverse Polish Notation or RPN in short) is a...

    Python Issue Postfix notation (also known as Reverse Polish Notation or RPN in short) is a mathematical notation in which operators follow all of its operands. It is different from infix notation in which operators are placed between its operands. The algorithm to evaluate any postfix expression is based on stack and is pretty simple: Initialize empty stack For every token in the postfix expression (scanned from left to right): If the token is an operand (number), push it on...

  • Python Language Only!!!! Python Language Only!!!! Python Language Only!!!! Python 3 is used. A. Write a...

    Python Language Only!!!! Python Language Only!!!! Python Language Only!!!! Python 3 is used. A. Write a function named smaller that accepts two arguments: a list, and a number n. Assume that the list contains numbers. The function should display all numbers in the list that are smaller than the number n. Write a code that declares and initializes a list of numbers and a variable number and pass them to the function to test it. Please see the outcome below:...

  • Python Language Only!!!! Python Language Only!!!! Python Language Only!!!! Python 3 is used. A. Write a...

    Python Language Only!!!! Python Language Only!!!! Python Language Only!!!! Python 3 is used. A. Write a function named smaller that accepts two arguments: a list, and a number n. Assume that the list contains numbers. The function should display all numbers in the list that are smaller than the number n. Write a code that declares and initializes a list of numbers and a variable number and pass them to the function to test it. Please see the outcome below:...

  • Python Language Only!!!! Python Language Only!!!! Python Language Only!!!! Python 3 is used. A. Write a...

    Python Language Only!!!! Python Language Only!!!! Python Language Only!!!! Python 3 is used. A. Write a function named smaller that accepts two arguments: a list, and a number n. Assume that the list contains numbers. The function should display all numbers in the list that are smaller than the number n. Write a code that declares and initializes a list of numbers and a variable number and pass them to the function to test it. Please see the outcome below:...

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