I am attempting to insert values into this tuple from input given by the user although i am failing to complete this task. A simple error must be contributing.
order = ['first', 'second', 'third', 'fourth'] # 4 values are to be accepted
numbers = [] # the array to hold the list values
num = ("", "", "", "") # a initiated tuple to store the values
for accord in order:
value = input("please enter a value : " ) # User enter value
numbers.append(value)
counter = 0 # counter to accept more values to the tuple
counter_second = num[value]
counter += 1
num = value #
print(num) # printing of the tuple does not work
print(numbers) # printing of the list does work