PYTHON cette blague :rire:
TemplateDeCPP
2021-02-11 18:32:21
>>> a, b = 6, 9
>>> a, b
(6, 9)
>>> (a, b = 16, 19)
File "<stdin>", line 1
(a, b = 6, 9)
^
SyntaxError: invalid syntax
>>> (a, b := 16, 19)
(6, 16, 19)
>>> a
6
>>> b
16
TemplateDeCPP
2021-02-11 18:32:42
>>> a = "wtf"
>>> b = "wtf"
>>> a is b
True
>>> a = "wtf!"
>>> b = "wtf!"
>>> a is b
False
BenjaminViolay
2021-02-11 18:32:56
https://image.noelshack.com/fichiers/2019/48/3/1574859659-ronaldo-celestin.jpgent
TemplateDeCPP
2021-02-11 18:34:11
>>> x = True
>>> y = False
>>> not x == y
True
>>> x == not y
File "<input>", line 1
x == not y
^
SyntaxError: invalid syntax
TemplateDeCPP
2021-02-11 18:35:16
>>> a, b = a[b] = {}, 5
>>> a
{5: ({...}, 5)}
Zgegous
2021-02-11 18:35:44
Ok Bill Gates
Plomba2
2021-02-11 18:35:55
ça donne pas envie
TemplateDeCPP
2021-02-11 18:36:15
>>> x = {0: None}
>>> for i in x:
>>> del x[i]
>>> x[i+1] = None
>>> print(i)
0
1
2
3
4
5
6
7
Plomba2
2021-02-11 18:36:33
rien de mieux qu'un bon template des familles hein l'op
TemplateDeCPP
2021-02-11 18:37:38
>>> a = [1, 2, 3, 4]
>>> b = a
>>> a = a + [5, 6, 7, 8]
>>> a
[1, 2, 3, 4, 5, 6, 7, 8]
>>> b
[1, 2, 3, 4]
>>> a = [1, 2, 3, 4]
>>> b = a
>>> a += [5, 6, 7, 8]
>>> a
[1, 2, 3, 4, 5, 6, 7, 8]
>>> b
[1, 2, 3, 4, 5, 6, 7, 8]
TemplateDeCPP
2021-02-11 18:38:46
Le 11 février 2021 à 18:36:33 Plomba2 a écrit :
rien de mieux qu'un bon template des familles hein l'op
https://image.noelshack.com/fichiers/2021/06/4/1613065109-errors-temp.png
KaiserLeopold
2021-02-11 18:38:52
Suffit juste d'être un peu rigoureux et de mettre des parenthèse
JuliaHolter
2021-02-11 18:44:10
je vois aucun soucis ici
Qhui
2021-02-11 18:45:28
Rien compris
Je code en HTML et CSS perso
TemplateDeCPP
2021-02-11 18:53:15
Le 11 février 2021 à 18:44:10 JuliaHolter a écrit :
je vois aucun soucis ici
lol