Welcome !!

I hope every single post in this blog can be useful for you all.

Tag: calculator

Tugas 2 Python – Simple Calculator

Hi ! In this post I’ll give you a very very simple script and explanation about making Simple CalculatorĀ in Python. Check this out ! Let’s get started with the source code: # proses inisiasi fungsi-fungsi yang akan digunakan: def penjumlahan(x, y): return x + y def pengurangan(x, y): return x – y def perkalian(x, y): return x * y def…