Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #97763 > unrolled thread
| Started by | eryksun <eryksun@gmail.com> |
|---|---|
| First post | 2015-10-16 18:02 -0500 |
| Last post | 2015-10-16 18:02 -0500 |
| Articles | 1 — 1 participant |
Back to article view | Back to comp.lang.python
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: help(string) commands not working on pyton 3.5 eryksun <eryksun@gmail.com> - 2015-10-16 18:02 -0500
| From | eryksun <eryksun@gmail.com> |
|---|---|
| Date | 2015-10-16 18:02 -0500 |
| Subject | Re: help(string) commands not working on pyton 3.5 |
| Message-ID | <mailman.63.1445036546.4562.python-list@python.org> |
On 10/16/15, Prasad Joshi <prajoshi@microsoft.com> wrote:
>
> I am using windows 10.
>
>>>> import math
>>>>
>>>>
>>>> help (math)
> 'more' is not recognized as an internal or external command,
> operable program or batch file.
What do you get for the following?
import os
windir = os.environ['SystemRoot']
more_path = os.path.join(windir, 'System32', 'more.com')
print(os.path.exists(more_path))
If more.com doesn't exist, your Windows installation needs to be
repaired. If it does exist, then probably PATHEXT is missing .COM.
Ensure it's listed in the output of the following:
import os
print(os.environ['PATHEXT'])
Back to top | Article view | comp.lang.python
csiph-web