Focus mode
# İki tane integer'ın toplamı integer verir.
2 + 2
4
type(2+2)
int
# İki tane float'un toplamı float verir.
2.4 + 2.5
4.9
type(2.4 + 2.5)
float
2.4 + 3
5.4
type(2.4 + 3)
float
# İki tane integer'ın farkı integer verir.
3 - 2
1
type(3-2)
int
# İki tane float'un farkı float verir.
2.6 - 2.1
0.5
type(2 - 2.1)
float
2.5 - 3
-0.5
type(2.5 - 3)
float
# İki tane integer'ın çarpımı integer verir.
3 * 2
6
type(3*2)
int
# İki tane float'un çarpımı float verir.
2.6 * 2.4
6.24
type(2.6 * 2.4)
float
2.5 * 3
7.5
type(2.5 * 3)
float
3 / 2
1.5
3 / 1.5
2.0
2.4 / 0.6
4.0
5 // 2
2
5 // 2.5
2.0
4.2 // 5
0.0
8.2 // 5
1.0
5 % 2
1
10 % 3
1
2.5 % 2
0.5
2 ** 3
8
3 ** 2
9
2.4 ** 2
5.76
5 ** -1
0.2
print()
metodunu kullanabiliriz.print(5)
5
Programs to Accelerate Your Progress in a Software Career
Join our 4-8 month intensive Patika+ bootcamps, start with the fundamentals and gain comprehensive knowledge to kickstart your software career!
You need to enroll in the course to be able to comment!