Re: Python idle did not open even after trying many times

2020-12-09 Thread Terry Reedy
On 12/9/2020 11:08 AM, avinash gaur wrote: Dear Sir/Mam, I am facing a problem with Python Idle. I am unable to open python idle even after clicking on it so many times. I am using Python 3.7 on Windows. What are you clicking on? Did IDLE work before? (If you just installed 3.7, why?) Can you

Re: Python Idle not giving my prompt after If line

2018-04-09 Thread T Berger
On Monday, April 9, 2018 at 1:19:13 PM UTC-4, Terry Reedy wrote: > On 4/9/2018 3:07 AM, Peter Otten wrote: > > brg...@gmail.com wrote: > > > >> I typed the If part of an If/Else statement, but did not get a prompt at > >> the beginning of the next line when I hit return. Instead, the cursor > >> l

Re: Python Idle not giving my prompt after If line

2018-04-09 Thread T Berger
On Monday, April 9, 2018 at 1:34:04 PM UTC-4, Peter Otten wrote: > brg...@gmail.com wrote: > > > On Monday, April 9, 2018 at 3:08:28 AM UTC-4, Peter Otten wrote: > >> brg...@gmail.com wrote: > >> > >> > I typed the If part of an If/Else statement, but did not get a prompt > >> > at the beginning

Re: Python Idle not giving my prompt after If line

2018-04-09 Thread Peter Otten
brg...@gmail.com wrote: > On Monday, April 9, 2018 at 3:08:28 AM UTC-4, Peter Otten wrote: >> brg...@gmail.com wrote: >> >> > I typed the If part of an If/Else statement, but did not get a prompt >> > at the beginning of the next line when I hit return. Instead, the >> > cursor lined up under the

Re: Python Idle not giving my prompt after If line

2018-04-09 Thread Terry Reedy
On 4/9/2018 3:07 AM, Peter Otten wrote: brg...@gmail.com wrote: I typed the If part of an If/Else statement, but did not get a prompt at the beginning of the next line when I hit return. Instead, the cursor lined up under the "p" of "print." Here is the line of text (it's part of a longer bit o

Re: Python Idle not giving my prompt after If line

2018-04-09 Thread brgrt2
On Monday, April 9, 2018 at 3:08:28 AM UTC-4, Peter Otten wrote: > brg...@gmail.com wrote: > > > I typed the If part of an If/Else statement, but did not get a prompt at > > the beginning of the next line when I hit return. Instead, the cursor > > lined up under the "p" of "print." Here is the lin

Re: Python Idle not giving my prompt after If line

2018-04-09 Thread Peter Otten
brg...@gmail.com wrote: > I typed the If part of an If/Else statement, but did not get a prompt at > the beginning of the next line when I hit return. Instead, the cursor > lined up under the "p" of "print." Here is the line of text (it's part of > a longer bit of coding, I copied out of a textboo

Re: python IDLE display with a 13.3-inch screen

2016-07-17 Thread Steven D'Aprano
On Sun, 17 Jul 2016 07:09 pm, bbking4...@laposte.net wrote: > Hello, I just load the latest version of Python 3.5 on my new computer > Asus 13.3-inch full HD display and the police is blurred in IDLE. Police? police n 1: the force of policemen and officers; "the law came looking fo

Re: Python IDLE won't start

2015-09-27 Thread Terry Reedy
On 9/27/2015 8:03 AM, Cai Gengyang wrote: Step 1 : Download Python 3.5 from here --- https://www.python.org/downloads/ Step 2 : Install it Step 3 : Click on the 'IDLE' button --- for me , I am using a Mac so I click on 'Finder', then type IDLE in the search field on the top right corner of the '

Re: Python IDLE won't start

2015-09-27 Thread Laura Creighton
In a message of Sat, 26 Sep 2015 13:14:44 -0400, Jacob Chaar writes: >Hi there, > > > >So, I download Python 3.5.0 and I while I execute the Python IDLE, it won't >start up. Also, I try to open the python command line and a message error >pop up. > > > >If you can help me, it will be really app

Re: Python IDLE won't start

2015-09-27 Thread mm0fmf via Python-list
On 26/09/2015 18:14, Jacob Chaar wrote: Hi there, So, I download Python 3.5.0 and I while I execute the Python IDLE, it won’t start up. Also, I try to open the python command line and a message error pop up. If you can help me, it will be really appreciate. Regards, Jacob Chaar Maybe if you

Re: Python IDLE won't start

2015-09-27 Thread Cai Gengyang
On Sunday, September 27, 2015 at 4:41:54 PM UTC+8, Jacob Chaar wrote: > Hi there, > > So, I download Python 3.5.0 and I while I execute the Python IDLE, it won't > start up. Also, I try to open the python command line and a message error > pop up. > > If you can help me, it will be really a

Re: Python IDLE

2013-03-22 Thread Steven D'Aprano
On Fri, 22 Mar 2013 18:11:32 +0100, Steve DeMicoli wrote: > Dear Sir, Madame, > > I am having trouble starting up IDLE. You say below that "both" IDLE's used to work. So what have you done to change the situation? What's different? > I have found threads with similar stories, however I haven'

Re: Python IDLE

2013-03-22 Thread Rick Johnson
On Friday, March 22, 2013 12:11:32 PM UTC-5, Steve DeMicoli wrote: > Dear Sir, Madame, > > [...message body removed for fear of legal reprisals...] > > The information in this email and any attachments are > confidential and intended solely for the use of the > individual or entity to whom they a

Re: Python IDLE and Access Denied

2008-10-14 Thread W. eWatson
W. eWatson wrote: Dennis Lee Bieber wrote: On Mon, 13 Oct 2008 19:07:06 -0700, "W. eWatson" <[EMAIL PROTECTED]> declaimed the following in comp.lang.python: I had just finished working with IDLE, and tried to double-click on a py file. It produced an OK dialog with the path to the file and the

Re: Python IDLE and Access Denied

2008-10-13 Thread W. eWatson
Dennis Lee Bieber wrote: On Mon, 13 Oct 2008 19:07:06 -0700, "W. eWatson" <[EMAIL PROTECTED]> declaimed the following in comp.lang.python: I had just finished working with IDLE, and tried to double-click on a py file. It produced an OK dialog with the path to the file and the msg "access denie

Re: Python/IDLE - text in different colours

2005-06-29 Thread Bill Davy
OK, I (sort of) tried that. Used chr() to avoid issues of which editor and rant the following: import sys ESC = chr(27) DarkRed = ESC + "[31;2m" ResetColour = ESC + "[0m" print "Initial colour" sys.stdout.write(DarkRed) ; sys.stdout.flush() print "Is this dark red?" sys.stdout.write(ResetCo

Re: Python/IDLE - text in different colours

2005-06-29 Thread TouTaTis
"Bill Davy" <[EMAIL PROTECTED]> wrote in news:[EMAIL PROTECTED]: > To make life easier for my users, I'd like to colour my prompt string > (as handed to raw_input()) a different colour to that produced by > print. I'm using Python 2.4.1 and IDLE 1.1.1 on Windows XP. Is it > possible, and if so,

Re: Python/IDLE - text in different colours

2005-06-29 Thread Bill Davy
Thank you Nathan, but that does not quite address my question. I want to have code in Python so make_the_prompt_string(Red) make_print_output(Green) while True: s = raw_input("This prompt (which is really several lines long) will be in red: ") Foo(s) print "And the result is in Gree

Re: Python/IDLE - text in different colours

2005-06-28 Thread Nathan Pinno
Bill. The way is the click on view, then click script checker, or something like that. It will color code the text for you. Nathan "Bill Davy" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > To make life easier for my users, I'd like to colour my prompt string (as > ha