100daysofcode-with-python-course icon indicating copy to clipboard operation
100daysofcode-with-python-course copied to clipboard

Course materials and handouts for #100DaysOfCode in Python course

Results 6 100daysofcode-with-python-course issues
Sort by recently updated
recently updated
newest added

Hi, the website packtpub.com has been updated, the code in the notebook does not work any more. I found the field for the user name in the code inspector but...

Hello, the find_element_by_name as described in the tutorial does not work for this site. Additionally it looks like they've updated their website and don't have the ebook page that is...

The default code throws an error and below code fixes it def get_movies_by_director(): directors = defaultdict(list) with open(MOVIE_DATA, encoding='utf-8') as f: for line in csv.DictReader(f): try: director = line['director_name'] movie...

It would be good for any beginner to have lesson about setting a enviromment virtualenv and other things. If this would be good for you, I will be happy to...