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


Groups > comp.lang.python > #39124

Re: request for help

Subject Re: request for help
From Stefan Holdermans <stefan@vectorfabrics.com>
Date 2013-02-18 20:59 +0100
References <B7C01624-32AB-49CE-AAB4-064A5B8E54CB@icloud.com>
Newsgroups comp.lang.python
Message-ID <mailman.1967.1361217565.2939.python-list@python.org> (permalink)

Show all headers | View raw


Leonardi,

> i saved the above program from python shell into a file as "circle.py" . when i type "import circle" i get  error..


Next time, please mention what kind of error you're getting.

Was it an indentation error? Because, as you pasted it, your code would lead to one.

If I fix the indentation, as in

  import math

  def area(radius):
    return math.pi * radius**2

  def circumference(radius):
    return 2 * math.pi * radius

it works fine for me.

HTH,

  Stefan

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


Thread

Re: request for help Stefan Holdermans <stefan@vectorfabrics.com> - 2013-02-18 20:59 +0100

csiph-web