the output of min('student') will be according to ASCII value? what are ASCII values here?
why am i getting an error?In [27]: person_tuple=(17,"Ram",56.8)In [28]: t2=("Student")In [29]: person_tupleOut[29]: (17, 'Ram', 56.8)In [30]: person_tuple + t2---------------------------------------------------------------------TypeError Traceback (most recent call last)<ipython-input-30-3714b9ddcd0d> in <module>----> 1 person_tuple + t2TypeError: can only concatenate tuple (not "str") to tuple
Can we convert a tuple to a string like we do for lists?
Nothing has been mentioned about how to convert string to tuple and vice-versa.
713 visits
Outline:उदाहरण के साथ List, string और tuple sequence डेटा टाइप्स इंडेक्स नंबर्स का उपयोग करके लिस्ट कैसे ऐक्सेस करें? string एलिमेंट्स ऐक्सेस करना tuple एलिमेंट्स ऐक्सेस करना विभिन्न sequence डेटा टाइप्स कैसे जोड़ें? वेरिएबल की लंबाई कैसे ज्ञात करें? लिस्ट का योग ज्ञात करना list को tuple में बदलना tuple को list में बदलना string को list में और list को string में बदलना
उदाहरण के साथ List, string और tuple sequence डेटा टाइप्स इंडेक्स नंबर्स का उपयोग करके लिस्ट कैसे ऐक्सेस करें? string एलिमेंट्स ऐक्सेस करना tuple एलिमेंट्स ऐक्सेस करना विभिन्न sequence डेटा टाइप्स कैसे जोड़ें? वेरिएबल की लंबाई कैसे ज्ञात करें? लिस्ट का योग ज्ञात करना list को tuple में बदलना tuple को list में बदलना string को list में और list को string में बदलना
Show video info
Pre-requisite