py–list
Python 3.7.5 (tags/v3.7.5:5c02a39a0b, Oct 15 2019, 00:11:34) [MSC v.1916 64 bit (AMD64)] on win32 Type "help", "copyright", "credits" or "license()" for more information. >>> lsit =[] >>> list =[] >>> type(list) >>> list=[1,2,3,4] >>> list [1, 2, 3, 4] >>> list=['str',1,2] >>> list ['str', 1, 2] >>>
用户评论