This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from selenium import webdriver | |
import time | |
import json | |
json_data=open("logos.json").read() | |
logos_dict = json.loads(json_data) | |
def finder(uuid): | |
name = '' | |
for logo in logos_dict : |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def my_recursion(l): | |
if len(l) == 0: | |
return | |
else: | |
print l[0]; | |
a = l[1:]; | |
return my_recursion(a) | |
my_recursion([1,342,3,4,234,6]) | |