Skip to content

First Item

Andrew Burke edited this page Apr 3, 2024 · 6 revisions

def get_first(lst):

if lst:

return lst[0]

return None

Clone this wiki locally