Please enable JavaScript.
Coggle requires JavaScript to display documents.
Python - Coggle Diagram
Python
Data types
List
Khởi tạo
[], list(), comprehension
-
Các phương thức
Tiện ích
co-in-cop-clear
count(), index(), copy, clear()
-
-
-
-
-
-
Chuỗi
Phương thức
-
-
-
Tách chuỗi
<chuỗi>.split(sep=None, maxsplit=-1)
-
-
-
Tiện ích
<chuỗi>.count(sub, [start, [end]])
<chuỗi>.startswith(prefix[, start[, end]])
<chuỗi>.endswith(prefix[, start[, end]])
<chuỗi>.find(sub[, start[, end]])
<chuỗi>.rfind(sub[, start[, end]])
<chuỗi>.index(sub[, start[, end]])
-
-