Can tuples take string values?
Hi, Can tuples take string values?
        1 answers ( 0 marked as helpful)
      
 Hi Marc,
A tuple can contain values of any type. Here is an example of a tuple with two strings:
 
("Hello", 'World')  
 
Best,
The 365 Team