The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
2answers
51 views

Python Line continuation dictionary

I have a function that needs to return the call to another function that have some parameters. Let's say, for example, the following: def some_func(): iss = do_something() example = ...
2
votes
2answers
59 views

How should I present long string literals (URLs) in Python?

I have a web scraping application that contains long string literals for the URLs. What would be the best way to present them (keeping in mind that I would like to adhere to PEP-8. URL = ...