ограничение поиска (python)

#python #string #search #asp.net-web-api

#python #строка #Поиск #asp.net-веб-api

Вопрос:

 from shodan import WebAPI

SHODAN_API_KEY = "MY API KEY"
api = WebAPI(SHODAN_API_KEY)

results = api.exploitdb.search('PHP')

print 'Results found: %s' % results['total']
for exploit in results['matches']:
        print '%s:' % (exploit['description'])
  

Как я могу ограничить поиск только печатью первых 5 результатов?

Ответ №1:

 for exploit in results['matches'][:5]:
        print '%s:' % (exploit['description'])
  

Ответ №2:

Не торопитесь и изучите основы Python о списках и, в частности, о «нарезке»:

http://diveintopython.ep.io/native-datatypes.html