max(list_of_numbers) # Returns the largest value in the list
</source>
:#Now on to some of the more powerful features of Python lists. Searching for values inside lists and finding locations of values in a list. The index() function allows searching inside a list for a value, it will return the index number of the first occurence. <source>
number = 10
help(list_of_numbers.index)