Re: Starting Life in Python World 3: Lists

Introduction topping = ['mushroom', 'pineapple', 'bacon', 'onion'] print(topping) # ['mushroom', 'pineapple', 'bacon', 'onion'] List is a compatible abstract data type. Data structure knowledge is required on how to realize it; can just directly understand and operate here, it is very easy after all. List in Python is somewhat similar to the array of languages like C (actually more convenient than the array operations, because of … Continue reading Re: Starting Life in Python World 3: Lists