error of opening Python

Michael F. Stemper michael.stemper at gmail.com
Tue Sep 26 09:20:40 EDT 2023


On 26/09/2023 07.27, Abdelkhelk ashref salay eabakh wrote:
> Dear Python team,
> 
> This is my not first time using Python, I tried to launch Python and it showed
> "Python 3.11.3 (tags/v3.11.3:f3909b8, Apr  4 2023, 23:49:59) [MSC v.1934 64 bit (AMD64)] on win32
> Type "help", "copyright", "credits" or "license" for more information." I
> don't know what this meant and how to fix this. Could you please help me?

What error did you encounter? Aside from the lack of line breaks, it looks
quite similar to what I get when I start up python:

  Python 3.6.9 (default, Mar 10 2023, 16:46:00)
  [GCC 8.4.0] on linux
  Type "help", "copyright", "credits" or "license" for more information.
  >>>

Didn't you get the ">>> " prompt? Once you get it, it shows that the
Read, Evaluate, Print Loop (REPL) is ready for you to type some python
statements. For instance:

  >>> x = 2**3
  >>> print(x)
  8
  >>>

-- 
Michael F. Stemper
Outside of a dog, a book is man's best friend.
Inside of a dog, it's too dark to read.



More information about the Python-list mailing list