SyntaxFix
Write A Post
Hire A Developer
Questions
a = ('x', 'y') b = a + ('z',) print(b)
a = ('x', 'y') b = a + tuple('b') print(b)