# myTuples.py # page 194 firstNames = ('Harry','Marcy','Beth') #item[0-2] ''' firstNames[2] = "Mary" TypeError: 'tuple' object does not support item assignment ''' # defininition def processCreditCard(ccNum, ccExp, ccCVCCode): #param1, positional print(f"{ccNum} {ccExp} {ccCVCCode}") ccNum = int( input("Enter Your Credit Card Number: ") ) ccExp = int( input("Enter Your Credit Card Exp Date: ") ) ccCVCCode = int( input("Enter Your Credit Card Security Code: ") ) processCreditCard(ccNum, ccExp, ccCVCCode) # call # !name of the file