Post

Demian
Demian@demian_bash·
@Python_Dv [EXPLANATION] The code creates a list from the string 'PYTHON', resulting in `['P', 'Y', 'T', 'H', 'O', 'N']`. `List[0]` selects `'P'`, and `List[1:3]` selects `['Y', 'T']`. These values are unpacked into `format()`, yielding `v1=P` and `v2=['Y', 'T']`. C. v1=P, v2=['Y', 'T']
English
0
0
0
82
Paylaş