🚀 Zero to Python Developer with No Degree - academy.internetmadecoder.com/python-dev-masterclass
@justrosy54 ай бұрын
1:42 - First project. Also, not a fan of this particular project because all the major browsers have extensions or built-in features that do the same thing. It's interesting to learn how those work, of course, and obviously to learn more about Python, but I'm thinking that maybe replacing this with something a bit fresher might be appropriate.
@justmeajah5 ай бұрын
New subscribers here!! I love that at the first project, you don't cut out to show the perfect project, but instead showing us your thought process of why the code didn't work, and opening the documentation. Kudos! Edit: I suspected you were currently in Indonesia with that tropical house background, and looking at the Spotify, boy am I right 😂
@ExploreFL20223 ай бұрын
Im sorry if i missed the mention of this but what is he using to compile this code? I see it's not the traditional cmd prompt. Thanks
@luckykhan62176 ай бұрын
We need mre like this❤
@jamshedalam42196 ай бұрын
Is it possible to earn money with python only? Or do i eventually need to learn other things too
@InternetMadeCoder6 ай бұрын
It is possible but depends on your chosen path.
@jamshedalam42196 ай бұрын
Thanks for the advice, I’m a business student getting into python and automation. Want to focus on business analytics. Your videos are really valuable. Been a subscriber for a while now❤️
@ShawnKuhn-hv4qz6 ай бұрын
@@jamshedalam4219for business analytics it's probably good to focus on Python, Excel, Sql and a vizualization tool
@BANIAAAAK3 ай бұрын
Hey im new :) thansk for the materials: i have this error tho on my compiler when i run the script: ValueError: too many values to unpack (expected 6)
@deanbartholomew82685 ай бұрын
I am using Python and Open Flamingo for AI development as a group:)
@CodeEmpire-dl7vv4 ай бұрын
i love your videos but can u make the font bigger plz so we can code alongside u . love your videos
@InternetMadeCoder4 ай бұрын
Good point
@smittysmusictavern82784 ай бұрын
@CodeEmpire-dl7vv I have found it very helpful to just snip a screenshot, of a section of his code, to the clipboard and paste it into a blank Word doc that I keep open just for that. That allows me to make it as big as I like.
@Djonesplays6 ай бұрын
Yo 🎉 lovely
@cyborg3163 ай бұрын
this is not for beginners
@smittysmusictavern82784 ай бұрын
I'm stuck on the first project. It is complaining that my list index is out of range when it hits this line: set_name = sys.argv[1] This is from this section if __name__ == "__main__": set_name = sys.argv[1] urls = URLS[set_name] open_webpages(urls) If I comment out this section, I get a Return 0 so I assume all the previous code is fine. I also noticed that with his code of that line, the "1" changes color while mine is the same as the rest of the line. Any help is greatly appreciated. Does it mean that maybe import sys didn't complete successfully ?