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.
10 lines
318 B
10 lines
318 B
9 months ago
|
states = ["Delaware", "Pennsylvania", "New Jersey", "Georgia", "Connecticut",
|
||
|
"Massachusetts", "Maryland", "South Carolina", "New Hampshire",
|
||
|
"Virginia", "New York", "North Corolina", "Rhode Island"]
|
||
|
print(states[0])
|
||
|
print(states[-1])
|
||
|
|
||
|
list.append("Illinois")
|
||
|
list.extend("Tennessee, Kentucky")
|
||
12 months ago
|
|