You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
546 B
18 lines
546 B
fruit = [
|
|
['Apples', 12, 'AAA'], ['Oranges', 1, 'B'],
|
|
['Pears', 2, 'A'], ['Grapes', 14, 'UR']]
|
|
|
|
cars = [
|
|
['Cadillac', ['Black', 'Big', 34500]],
|
|
['Corvette', ['Red', 'Little', 1000000]],
|
|
['Ford', ['Blue', 'Medium', 1234]],
|
|
['BMW', ['White', 'Baby', 7890]]
|
|
]
|
|
|
|
languages = [
|
|
['Python', ['Slow', ['Terrible', 'Mush']]],
|
|
['JavaSCript', ['Moderate', ['Alright', 'Bizarre']]],
|
|
['Perl6', ['Moderate', ['Fun', 'Weird']]],
|
|
['C', ['Fast', ['Annoying', 'Dangerous']]],
|
|
['Forth', ['Fast', ['Fun', 'Difficult']]],
|
|
]
|
|
|