Skip to content

Instantly share code, notes, and snippets.

@Ventsislav-Yordanov
Created February 6, 2019 06:11
Show Gist options
  • Save Ventsislav-Yordanov/a2bf3c22c18e0a79b19a22e8163a0c99 to your computer and use it in GitHub Desktop.
Save Ventsislav-Yordanov/a2bf3c22c18e0a79b19a22e8163a0c99 to your computer and use it in GitHub Desktop.
soft_skills = ("Communication", "Courtesy", "Flexibility", "Integrity", "Responsibility")
print(len(soft_skills))
print(min(soft_skills))
print(max(soft_skills))
print()
numbers = (10, 22, 53, 53, 8, 9, 11, 45, 90, 7, 26)
print(len(numbers))
print(min(numbers))
print(max(numbers))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment