❓ Quiz Python

Quel est le type retourné par cette expression ?

PYTHONDebutanttuples
20
quiz.py
1
Que va afficher ce code Python ?
2
 
3
a = 3.0
4
b = 3.0
5
 
6
c = 3
7
d = 3
8
 
9
print(a is b, c is d)