We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86da937 commit 06f3b51Copy full SHA for 06f3b51
input.txt
@@ -28,13 +28,13 @@ yuzde
28
29
islem
30
31
-collect
32
-Extraction
33
-Impact
34
-Divide
35
-Percentage
+addition
+subtraction
+multiplication
+division
+percentage
36
37
process
38
39
-number
40
-letter
+numbers
+letters
inputd.py
@@ -39,15 +39,15 @@
islem=input('Gerçekleştirmek İstediğiniz İşlemi Giriniz: ')
41
42
-collect=float(number1)+float(number2)
43
-Extraction=float(number1)-float(number2)
44
-Impact=float(number1)*float(number2)
45
-Divide=float(number1)/float(number2)
46
-Percentage=float(number1)%float(number2)
+addition=float(number1)+float(number2)
+subtraction=float(number1)-float(number2)
+multiplication=float(number1)*float(number2)
+division=float(number1)/float(number2)
+percentage=float(number1)%float(number2)
47
48
process=input('Enter the action you want to perform: ')
49
50
# number,letter inputs (for random)
51
52
-number=[0,1,2,3,4,5,6,7,8,9,10]
53
-letter="a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z"
+numbers=[0,1,2,3,4,5,6,7,8,9,10]
+letters="a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z"
0 commit comments