myint=12
myint=int(input("Tüm sayı gir: "))
print("Tüm sayı: "+str(myint))
myfloat=3.4
myfloat=float(input("Kayan sayı gir: "))
print("Kayan sayı: "+str(myfloat))
mycomplex=1 + 2j
mycomplex=complex(input("Karmaşı sayı gir: "))
print("Karmaşık sayı: "+str(mycomplex))
Dosyayı İndir