p
y
c
h
a
l
l
e
n
g
e
r
Home
Python Basics
Lists and Tuples
Exercise: Slice a Tuple
Exercise: Slice a Tuple
Just like lists, tuples can be sliced to extract a portion of their elements. Use slicing to get the first five days of the week.
Premium
reset
def greet(name): return f"Hello, {name}!" print(greet("Erik"))
Python
Setting up Python environment...
Output