In [1]:
print 'it works'
In [2]:
myString = 'it\'s a string'
In [3]:
print myString
In [4]:
myList = ['list of info', 'more info']
In [5]:
print myList
In [6]:
print myList[0]
In [7]:
myList.remove[0]
In [9]:
myList.remove('list of info')
In [10]:
print myList
In [11]:
myList.append('appended')
In [12]:
print myList
In [ ]: