שאלה בפיית'ון 3.5 האם (lst.pop(-1 ו- ()lst.pop זהים בתוצאתם? תודה, יהודה
Y Yehuda Katz New member 12/10/15 #1 שאלה בפיית'ון 3.5 האם (lst.pop(-1 ו- ()lst.pop זהים בתוצאתם? תודה, יהודה
E Expect New member 13/10/15 #2 נראה שכן. שניהם מבצעים מניפולציה על 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']
נראה שכן. שניהם מבצעים מניפולציה על 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']