Python Forum
Why doesn't this work in the Python Shell?
Thread Rating:
  • 3 Vote(s) - 3 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Why doesn't this work in the Python Shell?
#5
(Oct-24-2016, 06:52 AM)diemildefreude Wrote: but not if I enter it directly into the Python Shell (via Cmder on Windows). Is that normal?
From cmder,just the same cmd.
C:\
λ cd python27

C:\Python27
λ python
Python 2.7.9 (default, Dec 10 2014, 12:24:55) [MSC v.1500 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> i = 1
>>> while i <= 6:
...     print 2 * i, '   ',
...     i += 1
...
2     4     6     8     10     12
>>> exit()

C:\Python27
λ
Only 1 line at time an enter.
... here you push 4 space before enter.

I never use shell(interactive interpreter) from cmd/cmder.
That's much better from and IDE editor as eg PyCharm(Community Free),Spyder,Pyscripter ect.
The auto indent and autocomplete work in shell(interactive interpreter).
Reply


Messages In This Thread
RE: Why doesn't this work in the Python Shell? - by snippsat - Oct-24-2016, 01:53 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Help creating shell scrip for python file marciokoko 10 1,388 Sep-16-2023, 09:46 PM
Last Post: snippsat
  Why doesn't calling a parent constructor work with arbitrary keyword arguments? PurposefulCoder 4 964 Jun-24-2023, 02:14 PM
Last Post: deanhystad
  Launch Python IDLE Shell from terminal Pavel_47 5 1,264 Feb-17-2023, 02:53 PM
Last Post: Pavel_47
  Why doesn't this code work? What is wrong with path? Melcu54 7 1,821 Jan-29-2023, 06:24 PM
Last Post: Melcu54
  color code doesn't work harryvl 1 900 Dec-29-2022, 08:59 PM
Last Post: deanhystad
  client.get_all_tickers() Doesn't work gerald 2 1,727 Jun-16-2022, 07:59 AM
Last Post: gerald
  pip doesn't work after Python upgrade Pavel_47 10 4,244 May-30-2022, 03:31 PM
Last Post: bowlofred
  batch file for running python scipt in Windows shell MaartenRo 2 1,907 Jan-21-2022, 02:36 PM
Last Post: MaartenRo
  For Loop Works Fine But Append For Pandas Doesn't Work knight2000 2 2,032 Dec-18-2021, 02:38 AM
Last Post: knight2000
  Class Method to Calculate Age Doesn't Work gdbengo 1 1,719 Oct-30-2021, 11:20 PM
Last Post: Yoriz

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020