Review Note

Last Update: 05/03/2024 09:06 PM

Current Deck: Python::Python - Pythonic

Published

Currently Published Content


Front
create arg variable and pass in to range function 
Back
args = [3, 10]
range(*args)
[3, 4, 5, 6, 7, 8, 9]


*-operator unpacks the arguments out of a list or tuple

No published tags.

Pending Suggestions


No pending suggestions for this note.