1# Lorsque vous créez un tuple avec une seule valeur, n'oubliez pas d'y ajouter une virgule,2# sinon ce n'est pas un tuple.3>>> mon_tuple = ("ok")
4>>> type(mon_tuple)
5<type'str'>
6>>> mon_tuple = ("ok",)
7>>> type(mon_tuple)
8<type'tuple'>
9
you will get a confirmation link on this - you will have to click that for successful submission of your answer. we require this to keep the website free of spam, bots and unhelpful content
please ensure to add code which is syntactically corrent and executes properly
you will get a confirmation link on this - you will have to click that for successful submission of your question. we require this to keep the website free of spam, bots and unhelpful content