❓ Quiz Python

Que va afficher ce code ?

PYTHONDebutantlistes
20
quiz.py
1
Qu’affiche ce code ?
2
 
3
x = 'abc'
4
y = ''.join(['a', 'b', 'c'])
5
 
6
print(x == y, x is y)