Advertisement
Soy_Estudiante

python_08

Jun 7th, 2022
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. #Jerarquia de operaciones
  2.  
  3. # 1. ( )
  4. # 2. **
  5. # 3. *, /, //, %
  6. # 4. +, -
  7.  
  8. #Ejercicio: 5 + 2 * 3 - 1
  9.  
  10. # a. 20
  11. # b. 14
  12. # c. 10
  13. # d. 9
  14.  
  15. ejercicio3 = (10 + 3 * 4) - 2 * (2 + 3) * 2 - 20
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement