Saturday, February 18, 2023

Check if python is installed correctly

 There are a few ways to check if Python is installed on a Windows computer, the easiest one is to

  • Open a command line tool such as Windows Terminal (the default on Windows 11) or Command Prompt (the default on Windows 10).
  • In the command line, type `python`. If Python is installed, you should see a message like “Python 3.x.x” followed by the Python prompt, which looks like this “>>>”. Note that “3.x.x” represents the version number of Python.



  • Start with world wide simple program ("Hello World!") Tape in the command line:
    print("Hello World!")
    without the (;) and hit enter you should see Hello World!

    No comments:

    Post a Comment