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


Groups > comp.lang.python > #102234

Re: Pyhon Icon

From Dennis Lee Bieber <wlfraed@ix.netcom.com>
Newsgroups comp.lang.python
Subject Re: Pyhon Icon
Date 2016-01-29 09:04 -0500
Organization IISS Elusive Unicorn
Message-ID <mailman.89.1454076271.2338.python-list@python.org> (permalink)
References <41552F79B77A2746A4693A9B7A0BBE9308A49907@nawhkhoxch01.meatcorp.root>

Show all headers | View raw


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/

Back to comp.lang.python | Previous | Next | Find similar | Unroll thread


Thread

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

csiph-web