How to Create and Assign Lists : List Assign : List PYTHON examples


PYTHON examples » List » List Assign »

 

How to Create and Assign Lists


 

aList = [123'abc', 4.56['inner', 'list'], 7-9j]
anotherList = [None, 'something to see here']
print aList
print anotherList
aListThatStartedEmpty = []
print aListThatStartedEmpty
print list('foo')

   
  



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON examples

 Navioo List
» List Assign