Skip to content

Instantly share code, notes, and snippets.

@Ventsislav-Yordanov
Created February 6, 2019 05:52
Show Gist options
  • Save Ventsislav-Yordanov/ee22535c1eb32c028b065a8e1ac04393 to your computer and use it in GitHub Desktop.
Save Ventsislav-Yordanov/ee22535c1eb32c028b065a8e1ac04393 to your computer and use it in GitHub Desktop.
soft_skills = ("Communication", "Courtesy", "Flexibility", "Integrity", "Responsibility")
print(soft_skills[1:4])
print(soft_skills[:4])
print(soft_skills[:])
print(soft_skills[::2])
print(soft_skills[::-1])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment