issues Search Results · repo:mikeckennedy/write-pythonic-code-demos language:Python
Filter by
4 results
(64 ms)4 results
inmikeckennedy/write-pythonic-code-demos (press backspace or delete to remove)If I m not mistaken,
interesting_ids = {random.randint(0, len(data_list)) for _ in range(0, 100)}
should be
interesting_ids = {random.randint(0, len(data_list)-1) for _ in range(0, 100)}
Or ...
natter1
- 1
- Opened on Nov 30, 2019
- #13
Is this a bug here? Need to amend the video? I wanted to bring what I believe is a small mistake in the course. At
about 3:47ish in
https://training.talkpython.fm/player/course/write-pythonic-code-like-a-seasoned-developer/lecture/61004 ...
mikeckennedy
- 1
- Opened on Oct 27, 2018
- #12
If I try to run _07_flat_is_better_than_nested.py it exits with the following error:
Traceback (most recent call last):
File _07_flat_is_better_than_nested.py , line 2, in module
import ch_02_foundations._07_flat_support_file ...
swedishmike
- 1
- Opened on Oct 21, 2018
- #10
You have this under: What is Pythonic code and why does it matter?
Most importantly perhaps, you are writing code that is easily read and understood by your follow and senior Python
developers.
Pretty ...
SalvorinFex
- 2
- Opened on Aug 7, 2018
- #9

Learn how you can use GitHub Issues to plan and track your work.
Save views for sprints, backlogs, teams, or releases. Rank, sort, and filter issues to suit the occasion. The possibilities are endless.Learn more about GitHub IssuesProTip!
Restrict your search to the title by using the in:title qualifier.
Learn how you can use GitHub Issues to plan and track your work.
Save views for sprints, backlogs, teams, or releases. Rank, sort, and filter issues to suit the occasion. The possibilities are endless.Learn more about GitHub IssuesProTip!
Press the /
key to activate the search input again and adjust your query.