>took python class a year ago>spend the previous year slacking off, playing games>i've forgotten everything i've learned>can't even remember if it's print or printf.>just know it's either of the two
>>108891969Only one way to make sure ig
>>108891969so just try one and if its wrong use the other. its not like you cant iterate
>took python class a year ago>spend the previous year slacking off, playing games>i've forgotten everything i've learned>all i know is that python is a snake
>>108891969ngmi
>>108891969>learning to code in the post-GPT eraLol.
>>108891969In my personal experience it's actually more efficient to learn all by yourself than taking a class. And this happens specifically for python to me, classes make other stuff easier, but for python? It feels like a gigantic waste of time.
>>108892950KYS FAGGOT
>>108892950>Hurr don't learn anything, learning is bad for you! The cult demands you be dumb, 'cuz that's GOOD!
>>108891969i've learned this dogshit language like 8 times now.every time i need it, i learn it, and once my task is done it leaks back out of my head.it doesn't help that each time more crap is piled onto this heap.i'm saying this as a programmer that has done things most pyfag normies can't even begin to get into (e.g. programming against the C interface, using the async library, embedding it in applications, developing blender addons, hell even setting up the environment)christ i hate this gay ass language.give me C any time any day over python.
>>108891969You can Google the syntax nigger. You can program in just about any language as long as you have a decent grasp on program flow, data structures, and algorithms.
>>108893302>You can program in just about any languagepoorlyi think it's funny that every single normie language suffers from a GIL
>>108893374from a language design pov, python is liquid shit and javascript is burning liquid shit
>>108892950They need all hands on deck to fix the pajeetcode
>>108893391>LoOk HoW SiMpLe iT iS To PrInT ThInGs!!i guess that's why python has like 3 different competing and/or deprecated ways to print thingsalso the f stands for format, dipshit
>>108893402baby duck goes quack quack quackif i'm doing systems programming, i'm doing it in C because that's what the API is in
>>108893424t. no codes
>>108893402Python is a mediocre language full of stupid idiosyncrasies. No encapsulation/private in a fucking OO language, no consts, SINGLE LINE LAMBDAS, the GIL, etc etc. The tooling is god awful, every major language update breaks things so you need to futz with venvs. It's very clunky to use for simple scripts but a terrible choice for complex projects.
>>108893443sounds like a (You) problem, kiddo
>>108893402>Forces indentation>Private / public attributes and methods are your personal responsibility mate>Allows you to read from global variables, but when you try to write it you need to announce it global otherwise it creates a new local variable>Copy code from somewhere in any other language, use beautifier to fix indentation but not so in Python since whitespaces define blocks, IDE can't know where your code goes>Have to scroll the whole script for debugging>Ecosystem where minor changes break the entire dependency tree
>>108893443hate to break it to you anon, but python is not a shellif you are doing system admin using python, you are fundamentally misusing your tools
>>108893510keep on rationalizing why your baby duck language solves everything elegantly and there is almost no reason to use anything else unless for highly specific niche use cases
Syntax is the lowest form of pajeet reasoning but if you need it just Google learn x in y minutes but remember, you won't get far without training your algorithmic thinking, like yeah good job you now know the syntax and but how can you glue LOC together in order to produce a fully functioning program? That's right, algorithmic thinking.Then you can choose platforms such as Code Wars, Project Euler and Leetcode.
>>108893500Yeah start with Python, then switch to C - or vice versa. Best to know both worlds.
Whitespaces, beyond single space characters, shouldn't be part of any syntax. EOD
>>108893547
I use console.log();
>>108893330he's right and your a tard
>>108893553>Python beautifies itself.The exact opposite, retard. It can't beautify itself because it doesn't know where you wanted the block to start and end. With brackets a simple parser with rules can beautify it. Python doesn't.>No you don't.>t. no codeYes you do. If you ever worked on a project greater than a quick-and-dirty script.>CTRL-F and grepneither is able to explain context, retard
>>108891969when youre a beginner syntax specifics seem very important, but theyre really not. just continue learning and eventually you'll focus more on concepts
>>108893568>Quit splitting hairsi'm not splitting hairsif you fail to understand the difference between a shell and python's interactive mode, that's a PEBKAC issue that leads to enshitification. don't like bash? use zsh, csh, or any of the other standard shells (e.g. not shit like fish)
>>108893235>i'm saying this as a programmer that has done things most pyfag normies can't even begin to get into (e.g. programming against the C interface, using the async library, embedding it in applications,maybe if you use python proper instead of the archaic mess that is c extensions you would have a better time remembering
>>108893604>That's what i meant by shell. Python runs really good in a shell.holy shit, this jeet is retarded. this is what python does to your brain.
>>108893432>No encapsulation/privatewhatpython has both of those
>>108893615you are insane if you prefer to use bash if you have to do non-trivial iteration over directory trees and string processing
>>108893645>he deleted his comment out of shamehumility is the first step towards enlightenmenthumiliation not so much
>>108893665whatyou are talking to several people
>>108893432i dont even
>>108893604>Yes it can, seems like someone is bad at grepping.Grep is a search along an expression, not a semantic analyzer. Stop pretending