Computer Science, asked by vijayasree2005, 7 months ago

my Tuple 1 = (1,2,3)
myTuple 1. appened (4)
print(my Tuple?
the will give output or not​

Answers

Answered by Anish247
0

Answer:

no

Explanation:

because in first line your variable is no valid i.e. my Tuple

correct that to myTuple1 and in second line also and third line print statement should be closed

final code:

myTuple1 = (1,2,3)

myTuple1. appened (4)

print(my Tuple)

Similar questions