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.
9 lines
318 B
9 lines
318 B
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") |
|
|
|
|