Tuble Data Type in Python

 Tuble Data Type in Python 


thistuple = ("apple", "banana", "cherry")

print(thistuple[0])


Output 

apple

0 comments:

Post a Comment

gurnoorsingh5974@gmail.com

Count Upper Case and Lower Case Word in a string (Python)

  Count Upper Case and Lower Case Word in a string     (Python) def string_test(s):     d={"UPPER_CASE":0, "LOWER_CASE":...