Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


output / printclass typeusageenter valueread one value

list

Link

['mycsvfile.csv', . . . . ]

type ( )

<class 'list'>

len( )

make list: list( ) constructor

mylist = ["apple", "cherry"]

add value:

mylist.append("orange")

mylist[0]

print( mylist[0:2])

print( mylist[0:len(mylist)])

dictionary


Code Block
titledictionnary
collapsetrue
{'key1': 'value1','key2':'value2',. . . }


type ( )

<class 'dict'>



mydict('keyX')