Advertisement
teslariu

ejemplo de variables

Apr 22nd, 2023
644
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.14 KB | None | 0 0
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. precio = 25
  4. iva = 0.21
  5. precio = precio * (1 + iva)
  6. print("El precio con iva es",precio)
  7.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement