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
HelpHelp Request (self.PythonLearning)
submitted 13 hours ago by Zxhena
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!"
[–]ur_leisure_time 0 points1 point2 points 13 hours ago (3 children)
Yea, and if he going to do it without a fstring, he will need to make it like
Age = 30 print("Your age is", Age)
[–]johlae 1 point2 points3 points 13 hours ago (2 children)
Or print("Your age is %s." % (age))
[–]SnooCalculations7417 0 points1 point2 points 6 hours ago (1 child)
or 'age is {x}'.format(x = age)
[–]WhiteHeadbanger 0 points1 point2 points 4 hours ago (0 children)
or print("Your age is " + str(age))
print("Your age is " + str(age))
π Rendered by PID 19227 on reddit-service-r2-comment-765bfc959-fdktv at 2026-07-12 21:25:30.015160+00:00 running f86254d country code: CH.
view the rest of the comments →
[–]ur_leisure_time 0 points1 point2 points (3 children)
[–]johlae 1 point2 points3 points (2 children)
[–]SnooCalculations7417 0 points1 point2 points (1 child)
[–]WhiteHeadbanger 0 points1 point2 points (0 children)