Python basic grammar organize notes

 Sequence: sequence is not a keyword in python. Python has built-in five commonly used sequence structures: lists, tuples, sets, dictionaries and strings.

Lists, tuples, and strings can be converted to each other, using list, tuple, str.

List: In a list, the types of elements can be different because there is no relationship between them.

Guess you like

Origin blog.csdn.net/MasterCayman/article/details/109433407