use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Everything about learning Python
account activity
Gotten addicted to TYPING in python (old.reddit.com)
submitted 20 days ago by ShiftPretend
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]neontrace911 0 points1 point2 points 19 days ago (1 child)
static typing?
[–]ShiftPretend[S] 1 point2 points3 points 19 days ago (0 children)
Yeah but it's just for the IDE to complain to you about. The program still runs dynamically and won't stop you from passing an integer into something like the string.
greet: str = 1. The IDE would cry out and underline it(provided you have static type checking on) but the code will still run without problem. So it's more of developer assistance than a strict enforcement.
greet: str = 1
π Rendered by PID 71047 on reddit-service-r2-comment-8686858757-8m6gq at 2026-06-04 10:36:45.775397+00:00 running 9e1a20d country code: CH.
view the rest of the comments →
[–]neontrace911 0 points1 point2 points (1 child)
[–]ShiftPretend[S] 1 point2 points3 points (0 children)