Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #102234 > unrolled thread

Re: Pyhon Icon

Started byDennis Lee Bieber <wlfraed@ix.netcom.com>
First post2016-01-29 09:04 -0500
Last post2016-01-29 09:04 -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.


Contents

  Re: Pyhon Icon Dennis Lee Bieber <wlfraed@ix.netcom.com> - 2016-01-29 09:04 -0500

#102234 — Re: Pyhon Icon

FromDennis Lee Bieber <wlfraed@ix.netcom.com>
Date2016-01-29 09:04 -0500
SubjectRe: Pyhon Icon
Message-ID<mailman.89.1454076271.2338.python-list@python.org>
On Fri, 29 Jan 2016 11:00:16 +0000, Walter Nakatana
<WNakatana@meatco.com.na> declaimed the following:

>Good day,
>
>Every time I install python , I don't see the icon on my desktop neither in my C: drive
>

	Sounds normal.

	Python is a command-line language interpreter... It is not, by itself,
a GUI application development environment (for that there is the Tk based
IDLE, which is provided with most all Python installations; PythonWin,
provided with the ActiveState distribution and maybe still available as an
add-on; Python plug-ins for Eclipse).

	Open up a command shell and type Python... It should bring up the
interactive mode.

Microsoft Windows [Version 6.1.7601]
Copyright (c) 2009 Microsoft Corporation.  All rights reserved.

C:\Users\Wulfraed\Documents>python
ActivePython 2.7.5.6 (ActiveState Software Inc.) based on
Python 2.7.5 (default, Sep 16 2013, 23:11:01) [MSC v.1500 64 bit (AMD64)]
on win32
Type "help", "copyright", "credits" or "license" for more information.
>>>

	To run a Python script (ie; it's already in file with a .py extension)
{a junk program lying around on my disk}

C:\Users\Wulfraed\Documents>python oper.py


How many values? 3
3
Enter item #1> 2
Enter item #2> 3
Enter item #3> 5
Enter operation [+, -, *, /]> *
Cumulative result is 30


How many values?
-- 
	Wulfraed                 Dennis Lee Bieber         AF6VN
    wlfraed@ix.netcom.com    HTTP://wlfraed.home.netcom.com/

[toc] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web