In [1]:
print 'it works'


it works

In [2]:
myString = 'it\'s a string'

In [3]:
print myString


it's a string

In [4]:
myList = ['list of info', 'more info']

In [5]:
print myList


['list of info', 'more info']

In [6]:
print myList[0]


list of info

In [7]:
myList.remove[0]


---------------------------------------------------------------------------
TypeError                                 Traceback (most recent call last)
<ipython-input-7-c7ee434cb0b5> in <module>()
----> 1 myList.remove[0]

TypeError: 'builtin_function_or_method' object has no attribute '__getitem__'

In [9]:
myList.remove('list of info')

In [10]:
print myList


['more info']

In [11]:
myList.append('appended')

In [12]:
print myList


['more info', 'appended']

In [ ]: