Hello I am new to programming and i have started with python because it is easy to learn and open source. Well I have a problem but. I have made a calculator as all beginerrs do

Bu it only works on computers which have python. My program works on python's command line. Is it possible for it to run on cmd? Or is there any other way for it to run on a computer which doesn't have python installed? My program's code is like this: Well some places are turkish by the way
#-*- coding:utf-8 -*-
from __future__ import division
while True:
a = "(1) toplama"
b = "(2) cikarma"
c = "(3) carpma"
d = "(4) bolme"
print a
print b
print c
print d
soru = raw_input("lutfen yapmak istediginiz islemin numarasini secin: ")
if soru == "1":
sayi1 = input("toplama icin ilk sayiyi girin: ")
print sayi1
sayi2 = input("toplama icin ikinci sayiyi girin: ")
print sayi1, "+", sayi2, "=", sayi1 + sayi2
if soru == "2":
sayi3 = input("cikarma icin ilk sayiyi girin: ")
print sayi3
sayi4 = input("cikarma ici ikinci sayiyi girin: ")
print sayi3, "-", sayi4, ":", sayi3 - sayi4
if soru == "3":
sayi5 = input("carpma icin ilk sayiyi girin: ")
print sayi5
sayi6 = input("carpma icin ikinci sayiyi girin: ")
print sayi5, "x", sayi6, ":", sayi5 * sayi6
if soru == "4":
sayi7 = input("bolme icin ilk sayiyi girin: ")
print sayi7
sayi8 = input("bolme icin ikinci sayiyi girin: ")
print sayi7, "/", sayi8, ":", sayi7 / sayi8
|