שאלה בפיית'ון 3.5

Yehuda Katz

New member
שאלה בפיית'ון 3.5

האם (lst.pop(-1 ו- ()lst.pop זהים בתוצאתם?

תודה,
יהודה
 

Expect

New member
נראה שכן.

שניהם מבצעים מניפולציה על List ומורידים את הערך האחרון ברשימה.

>>> list = ["apples", "oranges", "tomatoes", "cucumbers"]>>> list.pop()
'cucumbers'
>>> list['apples', 'oranges', 'tomatoes']>>> list = ["apples", "oranges", "tomatoes", "cucumbers"]>>> list.pop(-1)'cucumbers'>>> list['apples', 'oranges', 'tomatoes']
 
למעלה