Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created March 26, 2021 14:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codecademydev/95cce83fdf452acb8f64e53d24582497 to your computer and use it in GitHub Desktop.
Save codecademydev/95cce83fdf452acb8f64e53d24582497 to your computer and use it in GitHub Desktop.
Codecademy export
students_period_A = ["Alex", "Briana", "Cheri", "Daniele"]
students_period_B = ["Dora", "Minerva", "Alexa", "Obie"]
for student in students_period_A:
students_period_B.append(student)
print(students_period_B)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment