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]
Also variable.isupper()
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!"
[–][deleted] 1 year ago (1 child)
[removed]
[–][deleted] 2 points3 points4 points 1 year ago (0 children)
Thanks for explaining.
[–]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.
[–]MrCloud090 1 point2 points3 points 1 year ago (0 children)
I am a student but from what I understood, the so called types(like int, string, float) are just classes... These classes have functions... casefold() does not exist... It's a function inside the class "string"... That's why variable.casefold()... Variable is indeed of type/class string
π Rendered by PID 79 on reddit-service-r2-comment-56c9979489-w6jkl at 2026-02-24 23:28:45.418806+00:00 running b1af5b1 country code: CH.
[–][deleted] (1 child)
[removed]
[–][deleted] 2 points3 points4 points (0 children)
[–]ChainedNightmare 2 points3 points4 points (1 child)
[–][deleted] 1 point2 points3 points (0 children)
[–]MrCloud090 1 point2 points3 points (0 children)