Learn practical skills, build real-world projects, and advance your career

day4-2-tuples

Use the "Run" button to execute the code.

!pip install jovian --upgrade --quiet
import jovian
# Execute this to save new versions of the notebook
jovian.commit(project="day4-2-tuples")
num = (1,2,3,4,5,6,7,4,3)
num
(1, 2, 3, 4, 5, 6, 7, 4, 3)