Skip to content

A simple calculator, built with Python (For learning purposes).

Notifications You must be signed in to change notification settings

LunarPandora/py-calc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

py-calc

EN : A simple calculator, built with Python (For learning purposes).

ID : Kalkulator dengan operasi sederhana, dibuat dengan Python (Untuk keperluan pembelajaran).

Ringkasan / Summary

Repository ini berisikan file pembelajaran Python mengenai operasi-operasi bilangan dalam bentuk program kalkulator sederhana. Operasi yang diinclude kedalam program ini antara lain :

Pertambahan

x = 1
y = 2
print(x + y)

Pengurangan

x = 2
y = 1
print(x - y)

Perkalian

x = 2
y = 1
print(x * y)

Pembagian

x = 2
y = 1
print(x / y)

Perpangkatan

x = 2
y = 3
print(x ** y)

About

A simple calculator, built with Python (For learning purposes).

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published