The Programmers Realm
The Programmers Realm
  • 19
  • 23 935
Install PYTHON and VSCODE in Under 5 Minutes! 🐍💻
In this video, I'll walk you through the process of installing Python and Visual Studio Code (VSCode) on your computer. Perfect for beginners! 🚀
🔗 Download Links:
- [Python](www.python.org/downloads/)
- [Visual Studio Code](code.visualstudio.com/Download)
📌 Steps Covered:
1. Downloading and Installing Python
2. Downloading and Installing Visual Studio Code
3. Installing the Python VSCode Extension
4. Running Your First Python Program in VSCode
📖 Chapters:
0:00 Yapping
1:00 Installing Python
2:30 Installing VSCode
3:07 Your first program
🔥 Join the conversation! What IDE or code editor do you prefer for Python development? Let me know in the comments below!
Join me in the PROGRAMMER'S REALM!
#Python #Programming #VSCode #PythonTutorial #PythonInstallation #ProgrammingSetup #LearnToCode #CodingForBeginners #TheProgrammersRealm
Переглядів: 250

Відео

КОМЕНТАРІ

  • @edminexusdrarceus8710
    @edminexusdrarceus8710 3 місяці тому

    Thx

  • @ProgrammersRealm
    @ProgrammersRealm 3 місяці тому

    SUBSCRIBE to join me in THE PROGRAMMERS REALM! 🚀

  • @Taokyle
    @Taokyle 3 місяці тому

    bad practise. You will forget to close the file once you work on big projects with alot of files a better way is use the "with" keyword, that way it will automatically close file once everything inside is done. It also helps you to trash the variable, giving more stacks for others' use

    • @warguy6474
      @warguy6474 3 місяці тому

      how do you "trash" a variable in python? Isnt it a garbage collected language? I'm not an expert bit I use python a decent bit I've never ever heard of this. Not talking about "with".

    • @ProgrammersRealm
      @ProgrammersRealm 3 місяці тому

      @warguy6474 You’re able to use the “del” keyword before a variable name to explicitly free the memory. Python is garbage collected. I don’t believe Taokyle watched the entire video through. After using “with” or any context manager, the garbage collector will indeed trash the variable and free resources.

  • @ProgrammersRealm
    @ProgrammersRealm 3 місяці тому

    Thanks for watching! SUBSCRIBE to join me in THE PROGRAMMERS REALM! 🚀

  • @ProgrammersRealm
    @ProgrammersRealm 3 місяці тому

    After reading a file, try using string methods to capitalize and lowercase a file's contents! SUBSCRIBE to join me in THE PROGRAMMERS REALM! 🚀

  • @ProgrammersRealm
    @ProgrammersRealm 3 місяці тому

    SUBSCRIBE to join me in THE PROGRAMMERS REALM! 🚀

  • @ProgrammersRealm
    @ProgrammersRealm 3 місяці тому

    Comments that are too verbose may actually make the code harder to understand...Comments should ideally provide information that's not immediately obvious. SUBSCRIBE to join me in THE PROGRAMMERS REALM! 🚀

  • @jejemariaa
    @jejemariaa 3 місяці тому

    Like your channel! Keep on going!

  • @juansebastiandiazsanchez46
    @juansebastiandiazsanchez46 3 місяці тому

    Fantastic video my man, keep up the good work 💯

    • @ProgrammersRealm
      @ProgrammersRealm 3 місяці тому

      Thank you for the continued support! ❤️

  • @juansebastiandiazsanchez46
    @juansebastiandiazsanchez46 3 місяці тому

    Nice video!, quick and clear ❤

  • @Hamzter1234
    @Hamzter1234 3 місяці тому

    I lost you after print

    • @ProgrammersRealm
      @ProgrammersRealm 3 місяці тому

      It builds on my previous episodes, take a look!

  • @kentutrebus100
    @kentutrebus100 3 місяці тому

    😁👍

  • @ProgrammersRealm
    @ProgrammersRealm 3 місяці тому

    Functions are pretty awesome, right? SUBSCRIBE to join me in THE PROGRAMMERS REALM! 🚀

  • @shadowstrikesmc
    @shadowstrikesmc 3 місяці тому

    Why is it so smooth 😮😮😮

    • @ProgrammersRealm
      @ProgrammersRealm 3 місяці тому

      Mmm, mechanical keyboards 💪

    • @shadowstrikesmc
      @shadowstrikesmc 3 місяці тому

      Slide link to keyboard pls

    • @ProgrammersRealm
      @ProgrammersRealm 3 місяці тому

      @@shadowstrikesmc RK68 with Akko Creamy Yellow v3. Tape modded and foamed. Using the keycaps that came with the board. Stabilizers and switches factory lubed.

  • @Jdbdjdbdkdbdjjd
    @Jdbdjdbdkdbdjjd 3 місяці тому

    Don't use music

  • @gabrielepisano4580
    @gabrielepisano4580 3 місяці тому

    Thanks <3

  • @ProgrammersRealm
    @ProgrammersRealm 3 місяці тому

    Sorry, my microphone sounds a bit more echo-y in this one! SUBSCRIBE to join me in THE PROGRAMMERS REALM! 🚀

  • @user-em5uc1jl1s
    @user-em5uc1jl1s 3 місяці тому

    Instead of dict["key"], it's better to use dict.get("key"). If you use dict[“key”] and there’s no such key in the dictionary Python will throw an error. But if you use dict.get(“key”) and there’s no such key the function will return None.

    • @ProgrammersRealm
      @ProgrammersRealm 3 місяці тому

      Worth noting. Thanks. Not sure why I did it using indexing notation 🤔 For anyone reading, it’s better to check for None using a conditional rather than wrapping everything in a try except 🚀

  • @doyouwantsli9680
    @doyouwantsli9680 3 місяці тому

    Usually superfluous, lists and dicts are what you usually need (or arrays and objects as they're called in more sensible languages)

    • @ProgrammersRealm
      @ProgrammersRealm 3 місяці тому

      Of course, but keep in mind Python is heavily used for data analytics. Sets have methods such as intersection and unions which is very useful for i.e probability. It’s up to the developer to decide what data structure they want to use, but it’s worth being familiar with tuples and sets too 🚀

  • @tikkivolta2854
    @tikkivolta2854 3 місяці тому

    i wrote 1500 flawlessly working lines of code in 4 days incl. a GUI that does OCR, NER and anonymization. i can't code. but i can talk to sonnet.

    • @ProgrammersRealm
      @ProgrammersRealm 3 місяці тому

      Good job! Maybe it's time to learn then! You might even be able to make your own AI one day with Python Tensorflow and Pytorch

    • @tikkivolta2854
      @tikkivolta2854 3 місяці тому

      @@ProgrammersRealm i am sure knowing the language gives you an edge but by now a.i. can tell me how to do it, where to find stuff and how to implement it. it's there 24/7 and it has neverending patience. sure, it has flaws too, but no other field is working as hard to iron them out. it probably will develop a new way of "coding" by itself. i am most definitely not going to spend time on learning python (anymore). considered it for a while but why?

    • @ProgrammersRealm
      @ProgrammersRealm 3 місяці тому

      @@tikkivolta2854 Certainly true. We're definitely moving into an era surrounded by AI. The thing is, programming languages are for humans to interact with computers. If you just wanted a AI to program something, it could absolutely just write the binaries directly for the program, optimizing it down to a per-byte level. There would be no need for human observation in that case, as the computer is then writing in its own language - ones and zeroes. (Maybe one day computers will be able to build themselves 😁)

  • @ProgrammersRealm
    @ProgrammersRealm 3 місяці тому

    Challenge: With the use of getting user input, try making the classic program that determines if a user is old enough to drink. (See description for more info) SUBSCRIBE to join me in THE PROGRAMMERS REALM! 🚀

  • @TheFacelessMask0
    @TheFacelessMask0 3 місяці тому

    Good video

  • @ProgrammersRealm
    @ProgrammersRealm 3 місяці тому

    actions = ("like", "comment", "subscribe", "share") SUBSCRIBE to join me in THE PROGRAMMERS REALM! 🚀

  • @kovron9677
    @kovron9677 3 місяці тому

    Nooicee i love it!

  • @ProgrammersRealm
    @ProgrammersRealm 3 місяці тому

    Simple, right? SUBSCRIBE to join me in THE PROGRAMMERS REALM! 🚀

  • @johnnechaev1550
    @johnnechaev1550 3 місяці тому

    Omg is it a tip ??? Ahah

    • @tfr
      @tfr 3 місяці тому

      more like a fundamental function lol

  • @ProgrammersRealm
    @ProgrammersRealm 3 місяці тому

    Thanks for watching! SUBSCRIBE to join me in THE PROGRAMMERS REALM! 🚀

  • @ProgrammersRealm
    @ProgrammersRealm 3 місяці тому

    Enjoyed this short? SUBSCRIBE to join me in THE PROGRAMMERS REALM! 🚀

  • @-BrawlMasterYT-
    @-BrawlMasterYT- 3 місяці тому

    I don’t know why but it doesn’t work

    • @ProgrammersRealm
      @ProgrammersRealm 3 місяці тому

      Hey there! By default, Python is not installed on your computer. You will need to download an install Python from the python.org website. Make sure to install the latest version, being 3.12.4. After running the installer, (assuming you're on Windows) open a command prompt, and type "py --version." It should show "Python 3.12.4" if everything's working. Run your program again, with "py" in front of it, e.g "py helloworld.py" and it should run this time. Make sure you are in the correct directory (folder) - I'll make a video on how to install Python in the near future, so keep a look out if it still doesn't work

  • @ProgrammersRealm
    @ProgrammersRealm 3 місяці тому

    Up for a challenge? Try replacing my name with your name in this sentence: "Joey is a master at Python!" ✨🧵 SUBSCRIBE to join me in THE PROGRAMMERS REALM! 🚀

  • @ProgrammersRealm
    @ProgrammersRealm 3 місяці тому

    Googling Challenge: Can you name the network type that encapsulates a city? SUBSCRIBE to join me in THE PROGRAMMERS REALM! 🚀

  • @stefanox8908
    @stefanox8908 3 місяці тому

    Matrix multiplication @

    • @ProgrammersRealm
      @ProgrammersRealm 3 місяці тому

      Hi Stefano, thanks for your comment! Indeed, using the Numpy module, you can use the "@" operator to multiply matrices. I'll make a video on matrix arithmetic when I start the 'Python Intermediate' series

  • @ProgrammersRealm
    @ProgrammersRealm 3 місяці тому

    Too easy? Check the description for a challenge! SUBSCRIBE to join me in THE PROGRAMMERS REALM! 🚀

  • @ProgrammersRealm
    @ProgrammersRealm 3 місяці тому

    Want to learn more? SUBSCRIBE to join me in THE PROGRAMMERS REALM! 🚀

  • @ProgrammersRealm
    @ProgrammersRealm 3 місяці тому

    Don't forget to SUBSCRIBE to join me in THE PROGRAMMERS REALM! 🚀