s_tup = "hello" # This will be a string
s1_tup = "hello", # This will be a tuple
s2_tup = ("hello") # This will be a string
s3_tup = ("hello",) # This will be a tuple
print(f"s_tup = {s_tup} {type(s_tup)}")
print(f"s1_tup = {s1_tup} {type(s1_tup)}")
print(f"s2_tup = {s2_tup} {type(s2_tup)}")
print(f"s3_tup = {s3_tup} {type(s3_tup)}")