Phyton Zaban (زبان پایتون)
17 subscribers
1 video
2 files
🔵آموزش زبان پایتون به زبان ساده به همراه جزوه و فیلم و تمرینات ساده

🔴جهت سوال و تدریس خصوصی به آی دی زیر پیام بدید
@edrisi
Download Telegram
from-now-python.pdf
12.6 MB
کتاب: از این پس پایتون
آموزش پایتون به زبان ساده
python demo.ppt
1.2 MB
فایل پاورپونت دمو آموزش پیاتون به زبان ساده
متد های مورد استفاده در لیست ها برای پایتون:

1 append() Used for adding elements to the end of the List.
2 copy() It returns a shallow copy of a list
3 clear() This method is used for removing all items from the list.
4 count() These methods count the elements.
5 extend() Adds each element of an iterable to the end of the List
6 index() Returns the lowest index where the element appears.
7 insert() Inserts a given element at a given index in a list.
8 pop() Removes and returns the last value from the List or the given index value.
9 remove() Removes a given object from the List.
10 reverse() Reverses objects of the List in place.
11 sort() Sort a List in ascending, descending, or user-defined order
12 min() Calculates the minimum of all the elements of the List
13 max() Calculates the maximum of all the elements of the List