String Python Tutorial

subject = '$$$ Get rich now!!! $$$' 
print subject.find('$$$') 
print subject.find('$$$', 1) # Only supplying the start 
print subject.find('!!!') 
print subject.find('!!!', 0, 16) # Supplying start and end