Re: Hello I want help get rid of that message and help install Python properly and thank you

2023-03-22 Thread Igor Korot
Hi, On Wed, Mar 22, 2023 at 11:37 AM Mohammed nour Koujan wrote: > > > -- What message? Please don't post screenshots - copy and paste the errors from your machine... Thank you. > https://mail.python.org/mailman/listinfo/python-list -- https://mail.python.org/mailman/listinfo/python-list

Hello I want help get rid of that message and help install Python properly and thank you

2023-03-22 Thread Mohammed nour Koujan
-- https://mail.python.org/mailman/listinfo/python-list

Re: hello can I be in your group?

2023-01-07 Thread Dieter Maurer
Keith Thompson wrote at 2023-1-6 17:02 -0800: >September Skeen writes: >> I was wondering if I could be in your group > >This is an unmoderated Usenet newsgroup. In fact, there are several access channels, Usenet newsgroup is one of them. Another channel is the python-list mailing list. You can

Re: hello can I be in your group?

2023-01-06 Thread Keith Thompson
September Skeen writes: > I was wondering if I could be in your group This is an unmoderated Usenet newsgroup. It doesn't have members, just people who post to it. If you want to discuss Python, just post. (Take a look around first to get an idea how how thinks work.) If you see a response

hello can I be in your group?

2023-01-03 Thread September Skeen
I was wondering if I could be in your group -- https://mail.python.org/mailman/listinfo/python-list

Re: Will "hello" always be printed?

2022-10-07 Thread MRAB
On 2022-10-08 00:40, Cameron Simpson wrote: On 07Oct2022 20:16, Robin van der veer wrote: If I have two processes communicating through a JoinableQueue, and I do the following: process 1: queue.put(1) #unfished tasks = 1 queue.join() #block until unfished tasks = 0 print('hello

Re: Will "hello" always be printed?

2022-10-07 Thread Cameron Simpson
On 07Oct2022 20:16, Robin van der veer wrote: If I have two processes communicating through a JoinableQueue, and I do the following: process 1: queue.put(1) #unfished tasks = 1 queue.join() #block until unfished tasks = 0 print('hello')[/python] process 2: queue.get

Will "hello" always be printed?

2022-10-07 Thread Robin van der veer
If I have two processes communicating through a JoinableQueue, and I do the following: process 1: queue.put(1) #unfished tasks = 1 queue.join() #block until unfished tasks = 0 print('hello')[/python] process 2: queue.get() queue.task_done() #unfished tasks = 0 queue.put

Re: Having trouble getting Hello World to appear

2022-04-21 Thread MRAB
On 2022-04-22 02:57, Greg wrote: I downloaded and installed the auto version of the software. "auto version"? I go to the director C:\google-python-exercises> *python hello.py* I am running Windows. What am I doing incorrectly? I don't know, because you didn't say what did or didn't

Re: Having trouble getting Hello World to appear

2022-04-21 Thread Greg
I downloaded and installed the auto version of the software. I go to the director C:\google-python-exercises> *python hello.py* I am running Windows. What am I doing incorrectly? I had the zip file installed under my One Drive and then moved it to my C drive Patiently waiting, Greg --

[issue45842] AddressSanitizer: bad-free - hello world c extension

2021-11-29 Thread Francesc Elies
Francesc Elies added the comment: I am closing this one, bad-free is in this case a false positive. Starting python and loading a dll which was linked with asan is incorrect. One should asan-rt as earyly as possible, in order to do that in linux one should use LD_PRELOAD but in windows it's

[issue45842] AddressSanitizer: bad-free - hello world c extension

2021-11-25 Thread Francesc Elies
Francesc Elies added the comment: I tested the same script in ubuntu and got the following. ==1361==ASan runtime does not come first in initial library list; you should either link runtime to your application or manually preload it with LD_PRELOAD. While on windows he does not complain

[issue45842] AddressSanitizer: bad-free - hello world c extension

2021-11-19 Thread Francesc Elies
== The test boils down to the following: win32api.LoadLibrary("LLVM-13.0.0-win64/lib/clang/13.0.0/lib/windows/clang_rt.asan_dynamic-x86_64.dll") import hello # hello is our compiled c extension with clang and ASAN print(hello.system()) import pdb If if comment the last line (

[issue45029] tkinter doc, hello world example - quit button clobbers method

2021-08-28 Thread Terry J. Reedy
Terry J. Reedy added the comment: For whatever reason, the 3.9 backport, PR-27911, was closed. In any case, we will not edit the code we have replaced. Lyndon, when responding by email, please delete the old text as it is redundant and noisy when your email is added to the web page.

[issue45029] tkinter doc, hello world example - quit button clobbers method

2021-08-28 Thread miss-islington
Change by miss-islington : -- keywords: +patch nosy: +miss-islington nosy_count: 4.0 -> 5.0 pull_requests: +26458 stage: -> patch review pull_request: https://github.com/python/cpython/pull/27911 ___ Python tracker

[issue45029] tkinter doc, hello world example - quit button clobbers method

2021-08-27 Thread E. Paine
E. Paine added the comment: Thanks for reporting this issue. This was (very) recently fixed in issue42560 / PR27842. These changes include a new hello world example and can be seen in the 3.10 / 3.11 docs (https://docs.python.org/3.10/library/tkinter.html#a-hello-world-program

[issue45029] tkinter doc, hello world example - quit button clobbers method

2021-08-27 Thread Lyndon D'Arcy
Lyndon D'Arcy added the comment: Apologies, my original post was unclear. The help(app.quit) which I posted is what we should get when the method isn't clobbered. What Serhiy has posted is what you get after running the example as-is. It shows that after running the example self.quit refers

[issue45029] tkinter doc, hello world example - quit button clobbers method

2021-08-27 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I get different result: >>> app.quit >>> help(app.quit) Help on Button in module tkinter object: class Button(Widget) | Button(master=None, cnf={}, **kw) | | Button widget. | ... -- nosy: +serhiy.storchaka

[issue45029] tkinter doc, hello world example - quit button clobbers method

2021-08-27 Thread Lyndon D'Arcy
Application(tk.Frame): def __init__(self, master=None): super().__init__(master) self.master = master self.pack() self.create_widgets() def create_widgets(self): self.hi_there = tk.Button(self) self.hi_there["text"] = "Hello W

Re: Hello! I was here to ask about pythonm actually I deleted the python 8 version and downloaded a new python 9 version but after deleting when I code something and after some days I want to open the

2021-05-14 Thread Payal Singh
Thanks, I'll check it out. On Sat, May 15, 2021, 1:54 AM Mats Wichmann wrote: > On 5/14/21 2:55 AM, Payal Singh wrote: > > > > it's easier if you put that in the message body, not the subject line. > > if you're getting the repair/modify/uninstall dialog, it means you're > running the installer

Re: Hello! I was here to ask about pythonm actually I deleted the python 8 version and downloaded a new python 9 version but after deleting when I code something and after some days I want to open the

2021-05-14 Thread Mats Wichmann
On 5/14/21 2:55 AM, Payal Singh wrote: it's easier if you put that in the message body, not the subject line. if you're getting the repair/modify/uninstall dialog, it means you're running the installer again (that's its job, if already installed, to somehow modify the installation). Don't

Hello! I was here to ask about pythonm actually I deleted the python 8 version and downloaded a new python 9 version but after deleting when I code something and after some days I want to open the fil

2021-05-14 Thread Payal Singh
-- https://mail.python.org/mailman/listinfo/python-list

Re: Hello, I need help.

2019-10-15 Thread Piet van Oostrum
Damla Pehlivan writes: > Dear Python Team, [...] > I am writing this mail quite emotionally. I asked a new "friend" for help, > but he laughed. He said it was because I am a girl and this is why I could > not do it. I want to prove to him and the whole world that I can do it. I > have a lesson

Re: Hello, I need help.

2019-10-15 Thread Peter Pearson
On Tue, 15 Oct 2019 18:57:04 +0300, Damla Pehlivan wrote: [snip] > . . . I downloaded the python program, and I > also downloaded Pycharm to use it. To be fair, I do not know what I am > doing, but I made some progress last night and I was happy about it. Today > when I came back from

Re: Hello, I need help.

2019-10-15 Thread Igor Korot
Hi, Are you trying to run your program, PyCharm, or the python console? Thank you. On Tue, Oct 15, 2019 at 12:01 PM Damla Pehlivan wrote: > > Dear Python Team, > First, I would like to introduce myself. My name is Damla Pehlivan, and I > live in Ankara/Turkey. I am a university student at

Hello, I need help.

2019-10-15 Thread Damla Pehlivan
Dear Python Team, First, I would like to introduce myself. My name is Damla Pehlivan, and I live in Ankara/Turkey. I am a university student at Ankara University. My major is Biology; therefore, I want to learn Python to use for Data Science. When I researched and asked my professors, they

Re: hello this ali .. i want some question about python

2019-04-05 Thread Igor Korot
Hi, On Fri, Apr 5, 2019 at 9:02 PM Sayth Renshaw wrote: > > On Saturday, 6 April 2019 08:21:51 UTC+11, maak khan wrote: > > i need your help guys .. plz Are you trying to create a teaching software? Thank you. > > With? > -- > https://mail.python.org/mailman/listinfo/python-list --

hello this ali .. i want some question about python

2019-04-05 Thread maak khan
i need your help guys .. plz -- https://mail.python.org/mailman/listinfo/python-list

Re: hello this ali .. i want some question about python

2019-04-05 Thread Sayth Renshaw
On Saturday, 6 April 2019 08:21:51 UTC+11, maak khan wrote: > i need your help guys .. plz With? -- https://mail.python.org/mailman/listinfo/python-list

[issue35086] tkinter docs: errors in A Simple Hello World Program

2018-10-30 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.6 ___ Python tracker ___

[issue35086] tkinter docs: errors in A Simple Hello World Program

2018-10-30 Thread miss-islington
miss-islington added the comment: New changeset c843a47007293d8361d0bfd45bfd7169afaa601c by Miss Islington (bot) in branch '3.6': bpo-35086: Fix tkinter example "A Simple Hello World Program". (GH-10160) https://github.com/python/cpython/commit/c843a47007293d8361d0bfd45bfd71

[issue35086] tkinter docs: errors in A Simple Hello World Program

2018-10-30 Thread miss-islington
miss-islington added the comment: New changeset f51ef51db686938486bff453e791a3093a1df108 by Miss Islington (bot) in branch '3.7': bpo-35086: Fix tkinter example "A Simple Hello World Program". (GH-10160) https://github.com/python/cpython/commit/f51ef51db686938486bff453e791a3

[issue35086] tkinter docs: errors in A Simple Hello World Program

2018-10-30 Thread miss-islington
Change by miss-islington : -- pull_requests: +9555 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35086] tkinter docs: errors in A Simple Hello World Program

2018-10-30 Thread miss-islington
Change by miss-islington : -- pull_requests: +9554 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35086] tkinter docs: errors in A Simple Hello World Program

2018-10-30 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset a80af770870937271865b5e2b05a2cfe40b024b6 by Serhiy Storchaka (Daniel Lovell) in branch 'master': bpo-35086: Fix tkinter example "A Simple Hello World Program". (GH-10160) https://github.com/python/cpyt

[issue35086] tkinter docs: errors in A Simple Hello World Program

2018-10-28 Thread Daniel Lovell
Daniel Lovell added the comment: Thanks for the reply xtreak. I agree that changing the example to include main() isn't necessary - I unintentionally included that from my example of the case where the current version isn't functional. In the PR I submitted on Github

[issue35086] tkinter docs: errors in A Simple Hello World Program

2018-10-28 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: Thanks for the report. So the current example in the docs works fine since root is in global namespace. But this seems to be a sensible change to use self.master which references root instead of relying on root to be global though I don't know we

[issue35086] tkinter docs: errors in A Simple Hello World Program

2018-10-27 Thread Daniel Lovell
Change by Daniel Lovell : -- keywords: +patch pull_requests: +9484 stage: -> patch review ___ Python tracker ___ ___

[issue35086] tkinter docs: errors in A Simple Hello World Program

2018-10-27 Thread Daniel Lovell
New submission from Daniel Lovell : In the documentation for tkinter, "A Simple Hello World Program" Application class does not hold onto the master Tk() instance as a class attribute. This is a good practice, and newcomers to tkinter would likely have trouble closing the wind

hello I need the code of md6 hash

2018-10-22 Thread cont...@blake2.net
تم الإرسال من البريد لـ Windows 10 --- لقد تم التحقق من خلو هذا البريد الإلكتروني من الفيروسات بواسطة برنامج أفاست مضاد الفيروسات. https://www.avast.com/antivirus -- https://mail.python.org/mailman/listinfo/python-list

Re: hello from a very excited and totally blind python programmer and game player

2018-07-30 Thread Amirouche Boubekki
Python webdev try: git clone https://github.com/amirouche/beyondjs Le lun. 30 juil. 2018 à 20:33, Amirouche Boubekki < amirouche.boube...@gmail.com> a écrit : > > > Le mar. 24 juil. 2018 à 22:10, Daniel Perry a > écrit : > >> Hi there everyone, my name is Daniel Perry

Re: hello from a very excited and totally blind python programmer and game player

2018-07-30 Thread Amirouche Boubekki
Le mar. 24 juil. 2018 à 22:10, Daniel Perry a écrit : > Hi there everyone, my name is Daniel Perry Hello! > and I'm a totally blind new Python user. Ok! > I've only just recently started picking up python and playing with it and > I intend on building some unique audio co

Re: hello from a very excited and totally blind python programmer and game player

2018-07-25 Thread Tim Golden
. First of all: Hello, and welcome. If you're a beginner to Python (or to programming in general) you might find the tutor list is a better place to start: https://mail.python.org/mailman/listinfo/tutor But feel free to carry on posting here if you prefer. If you want advice you'll probably

Re: hello from a very excited and totally blind python programmer and game player

2018-07-25 Thread Rhodri James
On 24/07/18 21:09, Daniel Perry wrote: Also, When I opened up the first message that I had gotten from this list, I got a prompt that popped up asking if I wanted to make windows live mail my default news client and I answered no. From that point on, I've been getting an error message and the

hello from a very excited and totally blind python programmer and game player

2018-07-24 Thread Daniel Perry
Hi there everyone, my name is Daniel Perry and I'm a totally blind new Python user. I've only just recently started picking up python and playing with it and I intend on building some unique audio computer games for the blind. Such things mostly as simulation games like farming, building type

[issue31966] [EASY C][Windows] print('hello\n', end='', flush=True) raises OSError when ran with py -u

2018-06-16 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue31966] [EASY C][Windows] print('hello\n', end='', flush=True) raises OSError when ran with py -u

2018-02-24 Thread miss-islington
miss-islington added the comment: New changeset 980790eee0c804061a49b8ad7373e4669b48f2ec by Miss Islington (bot) in branch '3.6': bpo-31966: Fixed WindowsConsoleIO.write() for writing empty data. (GH-5754)

[issue31966] [EASY C][Windows] print('hello\n', end='', flush=True) raises OSError when ran with py -u

2018-02-24 Thread miss-islington
miss-islington added the comment: New changeset e49bf0f353a968cddc4d8e6ea668b9d2d116e2ac by Miss Islington (bot) in branch '3.7': bpo-31966: Fixed WindowsConsoleIO.write() for writing empty data. (GH-5754)

[issue31966] [EASY C][Windows] print('hello\n', end='', flush=True) raises OSError when ran with py -u

2018-02-24 Thread miss-islington
Change by miss-islington : -- pull_requests: +5628 ___ Python tracker ___

[issue31966] [EASY C][Windows] print('hello\n', end='', flush=True) raises OSError when ran with py -u

2018-02-24 Thread miss-islington
Change by miss-islington : -- pull_requests: +5627 ___ Python tracker ___

[issue31966] [EASY C][Windows] print('hello\n', end='', flush=True) raises OSError when ran with py -u

2018-02-24 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 42c35d9c0c8175332f50fbe034a001fe52f057b9 by Serhiy Storchaka in branch 'master': bpo-31966: Fixed WindowsConsoleIO.write() for writing empty data. (GH-5754)

[issue31966] [EASY C][Windows] print('hello\n', end='', flush=True) raises OSError when ran with py -u

2018-02-19 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- keywords: +patch pull_requests: +5531 stage: needs patch -> patch review ___ Python tracker

[issue31966] [EASY C][Windows] print('hello\n', end='', flush=True) raises OSError when ran with py -u

2018-02-19 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- assignee: -> serhiy.storchaka ___ Python tracker ___

[issue31966] [EASY C][Windows] print('hello\n', end='', flush=True) raises OSError when ran with py -u

2017-11-07 Thread STINNER Victor
print('hello\n', end='', flush=True) raises OSError when ran with py -u -> [EASY C][Windows] print('hello\n', end='', flush=True) raises OSError when ran with py -u ___ Python tracker <rep...@bugs.python.org> <https://bugs.pyt

[issue31966] print('hello\n', end='', flush=True) raises OSError when ran with py -u

2017-11-07 Thread Eryk Sun
Eryk Sun added the comment: The error is in _io__WindowsConsoleIO_write_impl. If it's passed a length 0 buffer, it still tries to decode it via MultiByteToWideChar, which fails as documented. As Serhiy says, it can simply return Python int(0) in the zero-length case.

[issue31966] print('hello\n', end='', flush=True) raises OSError when ran with py -u

2017-11-07 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I don't know which part of _WindowsConsoleIO.write() fails to handle empty bytes string, but the simplest and the most efficient way to fix this bug it to add an explicit check for zero length at the begin of this method and

[issue31966] print('hello\n', end='', flush=True) raises OSError when ran with py -u

2017-11-07 Thread STINNER Victor
STINNER Victor added the comment: serhiy.storchaka: "keywords: + easy (C)" For easy issue, you should explain how do you want the issue to be fixed. -- ___ Python tracker

[issue31966] print('hello\n', end='', flush=True) raises OSError when ran with py -u

2017-11-07 Thread STINNER Victor
STINNER Victor added the comment: Once the bug will be fixed, it would be nice to test this simple case :-) -- nosy: +haypo ___ Python tracker

[issue31966] print('hello\n', end='', flush=True) raises OSError when ran with py -u

2017-11-07 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- keywords: +easy (C) stage: -> needs patch ___ Python tracker ___

[issue31966] print('hello\n', end='', flush=True) raises OSError when ran with py -u

2017-11-07 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: The problem is with _WindowsConsoleIO. C:\py\cpython>python.bat -u -c "import sys; sys.stdout.buffer.write(b'')" Running Release|Win32 interpreter... Traceback (most recent call last): File "", line 1, in OSError: [WinError

[issue31966] print('hello\n', end='', flush=True) raises OSError when ran with py -u

2017-11-07 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- components: +IO nosy: +serhiy.storchaka ___ Python tracker ___

[issue31966] print('hello\n', end='', flush=True) raises OSError when ran with py -u

2017-11-07 Thread Guillaume Aldebert
New submission from Guillaume Aldebert <galdeb...@gmail.com>: noticed on windows10, 3.6.3-64 and 3.7.0a2-64: using this test.py file: #!/usr/bin/env python3 print('hello\n', end='', flush=True) and running it in unbuffered mode: C:\Dev>py -u test.py hello Traceback (most recent

Re: hello!! i was Installing Tensor flow with gpu support and something went wrong

2017-06-12 Thread Terry Reedy
On 6/12/2017 2:18 PM, jlada...@itu.edu wrote: On Monday, June 12, 2017 at 10:40:25 AM UTC-7, Forsaken uttax wrote: hello!! I was trying to install Tensorflow on my laptop with Gpu support so I Installed python the one in the screenshot below, and I put in pip Tensorflow Install

Re: hello!! i was Installing Tensor flow with gpu support and something went wrong

2017-06-12 Thread jladasky
On Monday, June 12, 2017 at 10:40:25 AM UTC-7, Forsaken uttax wrote: > hello!! >I was trying to install Tensorflow on my laptop with Gpu support > so I Installed python the one in the screenshot below, and I put in pip > Tensorflow Install command and it says syntax er

hello!! i was Installing Tensor flow with gpu support and something went wrong

2017-06-12 Thread Forsaken uttax
hello!! I was trying to install Tensorflow on my laptop with Gpu support so I Installed python the one in the screenshot below, and I put in pip Tensorflow Install command and it says syntax error so i try to update the pip that too doesn't work desperate for solution help me. Regards

Re: Hello from a super noob!

2017-06-08 Thread Andre Müller
Hello, you can refactor your code a little bit and learn more about exceptions: def get_numbers(): first = None second = None while True: try: if first is None: first = int(input('Enter your first number: ')) if second is None

Re: Hello from a super noob!

2017-06-08 Thread Rhodri James
On 08/06/17 00:56, CB wrote: Hi everyone, I am taking a python class and I'm stuck in an exercise. what am i doing wrong? Can anyone try to run it? Thanks so much! It helps if you describe what is going wrong. Not just us, either; "Teddy Bear Debugging", explaining to a colleague (or indeed

Re: Hello from a super noob!

2017-06-07 Thread Steve D'Aprano
On Thu, 8 Jun 2017 09:56 am, CB wrote: > Can anyone try to run it? Yes, you can. Doctor to patient: "So, what seems to be the problem?" Patient: "You're the doctor, you tell me." -- Steve “Cheer up,” they said, “things could be worse.” So I cheered up, and sure enough, things got worse.

Re: Hello from a super noob!

2017-06-07 Thread MRAB
On 2017-06-08 00:56, CB wrote: Hi everyone, I am taking a python class and I'm stuck in an exercise. what am i doing wrong? Can anyone try to run it? Thanks so much! #Description:Input validation and while loops. import random def main(): #main function need in all programs for automated

Hello from a super noob!

2017-06-07 Thread CB
Hi everyone, I am taking a python class and I'm stuck in an exercise. what am i doing wrong? Can anyone try to run it? Thanks so much! #Description:Input validation and while loops. import random def main(): #main function need in all programs for automated testing #your program

Re: Hello

2016-03-12 Thread alister
On Fri, 11 Mar 2016 17:53:45 -0500, Larry Martell wrote: > On Fri, Mar 11, 2016 at 4:49 AM, Steven D'Aprano > wrote: > >> On Fri, 11 Mar 2016 02:28 pm, rubengoods...@yahoo.com wrote: >> >> > I am having trouble installing the Python software. >> >> Make sure your computer

Re: Hello

2016-03-11 Thread Steven D'Aprano
On Sat, 12 Mar 2016 09:53 am, Larry Martell wrote: > Many years ago (c. 1985) I was at a job interview and the interviewer > asked me what the first thing I would do when I am presented with a new > problem that I had to code up. I gave all sorts of answers like 'do a top > down analysis of the

Re: Hello

2016-03-11 Thread Larry Martell
On Fri, Mar 11, 2016 at 4:49 AM, Steven D'Aprano wrote: > On Fri, 11 Mar 2016 02:28 pm, rubengoods...@yahoo.com wrote: > > > I am having trouble installing the Python software. > > Make sure your computer is turned on. I can't tell you how many times I've > tried to install

Re: Hello

2016-03-11 Thread Steven D'Aprano
On Fri, 11 Mar 2016 02:28 pm, rubengoods...@yahoo.com wrote: > I am having trouble installing the Python software. Make sure your computer is turned on. I can't tell you how many times I've tried to install Python, and I type commands and click icons and nothing happens. It's really frustrating

Re: Hello

2016-03-11 Thread Mark Lawrence
On 11/03/2016 03:28, rubengoodson3--- via Python-list wrote: I am having trouble installing the Python software. Sent from Windows Mail This type of question has been asked and answered repeatedly over the last few months so I suggest that you search the archives for your precise problem.

Hello

2016-03-11 Thread rubengoodson3--- via Python-list
I am having trouble installing the Python software. Sent from Windows Mail -- https://mail.python.org/mailman/listinfo/python-list

Re: Hello.

2016-01-19 Thread Felix Almeida
Check your PATH environment variable. On 16/01/16 04:41 PM, Hmood Js wrote: cmd won't recognize python at all I've checked several times , and I don't understand what's wrong Sent from Mail for Windows 10 -- https://mail.python.org/mailman/listinfo/python-list

Hello.

2016-01-17 Thread Hmood Js
cmd won't recognize python at all I've checked several times , and I don't understand what's wrong Sent from Mail for Windows 10 -- https://mail.python.org/mailman/listinfo/python-list

Re: Hello.

2016-01-17 Thread Igor Korot
Hi, On Sat, Jan 16, 2016 at 4:41 PM, Hmood Js wrote: > cmd won't recognize python at all I've checked several times , and I don't > understand what's wrong What does this mean exactly? Can you give an example? Thank you. > > Sent from Mail for Windows 10 > > -- >

Re: Hello.

2016-01-17 Thread jacob Kruger
Environment variables pointing to c:\python..? (needs to point to actual installation directory) Jacob Kruger Blind Biker Skype: BlindZA "Roger Wilco wants to welcome you...to the space janitor's closet..." On 2016-01-16 11:41 PM, Hmood Js wrote: cmd won't recognize python at all I've checked

Re: Hello.

2016-01-17 Thread Bernardo Sulzbach
This is likely due to the fact that python.exe is not in PATH. Try reinstalling Python with this option or adding it yourself. -- https://mail.python.org/mailman/listinfo/python-list

Re: Hello

2015-12-11 Thread Seung Kim
See message below. On Fri, Dec 11, 2015 at 1:13 PM, Seung Kim wrote: > I would like to have Python 3.5.1 MSI installer files for both 32-bit and > 64-bit so that I can deploy the software on managed computers on campus. > > When I ran the silent install command line on

Re: Hello

2015-12-11 Thread Ian Kelly
On Fri, Dec 11, 2015 at 11:43 AM, Seung Kim wrote: > See message below. > > On Fri, Dec 11, 2015 at 1:13 PM, Seung Kim wrote: > >> I would like to have Python 3.5.1 MSI installer files for both 32-bit and >> 64-bit so that I can deploy the

Re: Hello

2015-09-21 Thread Zachary Ware
On Thu, Sep 17, 2015 at 10:10 AM, moon khondkar <ko...@hotmail.co.uk> wrote: > Hello I have problem with python installation.I downloaded python 3.5 but I > cannot use it on my computer.I can not open the idle. I get something like > saying "users\local settings\Applicat

Re: Hello

2015-09-19 Thread Mark Lawrence
On 19/09/2015 18:31, Dennis Lee Bieber wrote: On Thu, 17 Sep 2015 16:10:55 +0100, moon khondkar <ko...@hotmail.co.uk> declaimed the following: Hello I have problem with python installation.I downloaded python 3.5 but I cannot use it on my computer.I can not open the idle. I get somethin

RE: Hello

2015-09-19 Thread Watson, Paul
> Hello I have problem with python installation.I downloaded python 3.5 but > I cannot use it on my computer.I can not open the idle. I get something like > saying > "users\local settings\Application data\programs\python\python35-32\pythonw.exe > is not valid win32

Hello

2015-09-19 Thread moon khondkar
Hello I have problem with python installation.I downloaded python 3.5 but I cannot use it on my computer.I can not open the idle. I get something like saying "users\local settings\Application data\programs\python\python35-32\pythonw.exe is not valid win32 application. Thanks that will be

Re: Hello

2015-09-19 Thread Random832
Dennis Lee Bieber writes: > While Windows likes to stuff things in directories with spaces in them, > I find third-party applications (especially those that are created for > multiple OSes) work better when installed in directories that have no > spaces... Hey, don't

Re: Hello

2015-09-19 Thread Emile van Sebille
On 9/17/2015 8:10 AM, moon khondkar wrote: Hello I have problem with python installation.I downloaded python 3.5 but I cannot use it on my computer.I can not open the idle. I get something like saying "users\local settings\Application data\programs\python\python35-32\pythonw.exe is not

[issue25067] Hello

2015-09-10 Thread Petri Lehtinen
Changes by Petri Lehtinen <pe...@digip.org>: -- files: attachment.zip nosy: petri.lehtinen priority: normal severity: normal status: open title: Hello Added file: http://bugs.python.org/file40433/attachment.zip ___ Python tracke

Re: Hello

2015-09-04 Thread Rustom Mody
On Thursday, September 3, 2015 at 10:37:04 AM UTC+5:30, Phuong Phan wrote: > Hi Python community, Hi Phuong Phan > I am new to Python and currently taking one online course of computer science > and programming using Python. I really like Python because it is simple and > clarity but powerful

Hello

2015-09-02 Thread Phuong Phan
Hi Python community, I am new to Python and currently taking one online course of computer science and programming using Python. I really like Python because it is simple and clarity but powerful to me. I just joint Python mailing list and i hope to enjoy Python programming discussion with you

Hello Group and how to practice?

2015-05-31 Thread Anders Johansen
Hi my name is Anders I am from Denmark, and I am new to programming and python. Currently, I am doing the codecademy.com python course, but sometime I feel that the course advances to fast and I lack repeating (practicing) some of the concepts, however I don't feel confident enough to start

Re: Hello Group and how to practice?

2015-05-31 Thread Cem Karan
On May 31, 2015, at 9:35 AM, Anders Johansen sko...@gmail.com wrote: Hi my name is Anders I am from Denmark, and I am new to programming and python. Currently, I am doing the codecademy.com python course, but sometime I feel that the course advances to fast and I lack repeating

Re: Hello Group and how to practice?

2015-05-31 Thread Anders Johansen
Den søndag den 31. maj 2015 kl. 16.22.10 UTC+2 skrev Cem Karan: On May 31, 2015, at 9:35 AM, Anders Johansen sko...@gmail.com wrote: Hi my name is Anders I am from Denmark, and I am new to programming and python. Currently, I am doing the codecademy.com python course, but sometime I

Re: Hello Group and how to practice?

2015-05-31 Thread Cem Karan
On May 31, 2015, at 10:51 AM, Anders Johansen sko...@gmail.com wrote: Den søndag den 31. maj 2015 kl. 16.22.10 UTC+2 skrev Cem Karan: On May 31, 2015, at 9:35 AM, Anders Johansen sko...@gmail.com wrote: Hi my name is Anders I am from Denmark, and I am new to programming and python.

Re: Hello World in Python

2015-01-24 Thread Terry Reedy
would be a Hello World program. Let's see if we can get that to work. So my buddy creates opens the IDE they gave at the workplace, creates a new project, adds a demo.py file, writes one line : print Hello World, hits Run in the IDE and indeed the display is shown at the bottom when it executes

Re: Hello World in Python

2015-01-24 Thread Rustom Mody
On Sunday, January 25, 2015 at 5:36:02 AM UTC+5:30, Chris Angelico wrote: One thing that I really like doing with my Python students (full disclosure: I'm a mentor with www.thinkful.com and am thus at times paid to help people learn Python) is some form of screen-sharing, so I can watch

Re: Hello World in Python

2015-01-24 Thread Chris Angelico
On Sun, Jan 25, 2015 at 6:14 PM, Rustom Mody rustompm...@gmail.com wrote: On Sunday, January 25, 2015 at 5:36:02 AM UTC+5:30, Chris Angelico wrote: One thing that I really like doing with my Python students (full disclosure: I'm a mentor with www.thinkful.com and am thus at times paid to help

Re: Hello World in Python

2015-01-24 Thread Christopher J. Pisz
learning any new language, I said, the first step would be a Hello World program. Let's see if we can get that to work. So my buddy creates opens the IDE they gave at the workplace, creates a new project, adds a demo.py file, writes one line : print Hello World, hits Run in the IDE and indeed the display

  1   2   3   4   5   6   >