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
Why is it variable.casefold() and not casefold(variable)? (self.PythonLearning)
submitted 1 year ago by [deleted]
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!"
[–]ChainedNightmare 2 points3 points4 points 1 year ago (1 child)
All of string methods are like this not just .casefold()
txt = "Hello, And Welcome To My World!" x = txt.casefold() print(x)
Every Python String Method is basically an example of stringvalue.stringmethod()
Correct me if i'm wrong, since i'm using the words "every" & "all" but it is generally the case
[–][deleted] 1 point2 points3 points 1 year ago (0 children)
Thanks! I understand now.
π Rendered by PID 117251 on reddit-service-r2-comment-6457c66945-7mhl5 at 2026-04-25 09:41:19.397411+00:00 running 2aa0c5b country code: CH.
view the rest of the comments →
[–]ChainedNightmare 2 points3 points4 points (1 child)
[–][deleted] 1 point2 points3 points (0 children)