Given the variable t1 and tuple below, write a small piece of code that uses the in or not in the membership operator to determine if the string “yoyo” is in the tuple.

t1 = "yoyo"
tup = ('abcd', "yoyo", '5', 10, '12' )