Skip to content

juan25nov/jbbmo-Introduction-to-Git-and-GitHub

 
 

Repository files navigation

Introduction to Git and GitHub

Simple Interest Calculator

A calculator that calculates simple interest given principal, annual rate of interest and time period in years.

def calcular_interes_simple(p, t, r): return p * t * r / 100

Ejemplo de uso

principal = 1000 tiempo = 5 tasa_interes = 8

interes = calcular_interes_simple(principal, tiempo, tasa_interes) print(f"El interés simple es: {interes}")

© 2022 XYZ, Inc.

About

Introduction to Git and GitHub

Resources

License

Code of conduct

Contributing

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 54.2%
  • Shell 45.8%