how to give a tuple in python code example
Example: tuples in python
my_tuple = ("hello")
print(type(my_tuple)) #
# Creating a tuple having one element
my_tuple = ("hello",)
print(type(my_tuple)) #
# Parentheses is optional
my_tuple = "hello",
print(type(my_tuple)) #