Which path should I choose
Option 1: numbers = [] numbers.append(int(input('Enter First Number: '))) numbers.append(int(input('Enter Second Number: '))) total = numbers[0] + numbers[1] print('Your Total: %d' % total) Option 2: number_one = int(input('Enter First Number: ')) number_two = int(input('Enter Second Number: ')) total = number_one + number_two print('Your Total: ' + str(total)) -------------------------------------------------------- I'm just starting out programming so I'm still asking alot of dumb questions I apologize. I've been doing a little bit from SoloLearn Python but I'm also reading some book called 'Python Crash Course'. As I've stated I'm just starting out about 2 weeks into coding now and it's starting to get really fun even though I can hardly do anything ;D But back to the question, should I start expirimenting with list as I continue learning or make it simple like option 2? I'm in chapter 3 of this book and it says i'll be using list in alot of the things I program with python in the future so I'm wondering is it better than option 2?