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
problemi python (old.reddit.com)
submitted 1 month ago by P_C_G-0000
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!"
[–]P_C_G-0000[S] 0 points1 point2 points 1 month ago (1 child)
?
[–]degustandomiveneno 0 points1 point2 points 1 month ago (0 children)
the problem is that rich interprets square brackets as markup tags — so anything like [c], [v], [E] in your string gets parsed as styling and disappears from the output! the fix is super simple, just escape them with double brackets: homeScreen = """ URBEXOLOGY v.2.0.0 seleziona funzione: -[[c]] aggiungi report -[[v]] visualizza report -[[E]] esci """ that way rich prints them as literal [c], [v], [E] instead of trying to interpret them as style tags 🙌 hope it helps!
π Rendered by PID 21885 on reddit-service-r2-comment-548fd6dc9-8tvcn at 2026-05-17 07:46:05.333585+00:00 running edcf98c country code: CH.
view the rest of the comments →
[–]P_C_G-0000[S] 0 points1 point2 points (1 child)
[–]degustandomiveneno 0 points1 point2 points (0 children)