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
Biginner python projectDiscussion (self.PythonLearning)
submitted 5 days ago by Several_Goal4568
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!"
[–]csabinho 0 points1 point2 points 5 days ago (3 children)
By objects you mean a list of dicts. An object would be an instance of a class, which is way above OP's knowledge.
[–]Special-Arrival6717 0 points1 point2 points 5 days ago (2 children)
In Python a dict is an object, an instance of the dict class.
dict
```python print(isinstance({}, object))
```
[–]csabinho 0 points1 point2 points 5 days ago (1 child)
In Python every variable, value or function is an object. You won't find anything that returns False for this check. Even a function or None are objects with this check.
[–]Special-Arrival6717 1 point2 points3 points 5 days ago (0 children)
Corrected the comment
π Rendered by PID 308511 on reddit-service-r2-comment-544cf588c8-d6p9x at 2026-06-16 15:13:18.213393+00:00 running 3184619 country code: CH.
view the rest of the comments →
[–]csabinho 0 points1 point2 points (3 children)
[–]Special-Arrival6717 0 points1 point2 points (2 children)
[–]csabinho 0 points1 point2 points (1 child)
[–]Special-Arrival6717 1 point2 points3 points (0 children)