Question d’entretien chez Xilinx

do a sub string seach of a string using nested loops

Réponse à la question d'entretien

Utilisateur anonyme

8 déc. 2018

#!/usr/bin/python3 str1 = "this is string example....wow!!!" str2 = "exam"; print (str1.find(str2)) print (str1.find(str2, 10))