Hey everyone, I'm a new python user. I'm running SuSe linux development 10.
My problem is with importing files. Here is my file - it uses the myro library for robot programming.
/dev/rfcomm0 is the name of
#helloWorld.py
from myro import *
init("/dev/rfcomm0")
def hello():
forward(.5,.5)
stop()
hello()
---
From the command line::
me> python
Python 2.4.2 (#1, Aug 1 2008, 00:15:16)
[GCC 4.1.2 20070115 (prerelease) (SUSE Linux)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import helloWorld
WARNING: xmpp was not found: chat and webservices will not be available
(c) 2006-2007 Institute for Personal Robots in Education
[See http://www.roboteducation.org/ for more information]
Myro version 2.8.2 is ready!
WARNING: sound did not load; need tkSnack?
You are using fluke firmware 2.7.4
You are using scribbler firmware 2.6.1
Hello, I'm Scribby!
>>> helloWorld.hello()
[does what it will]
NOW HERE IS THE PROBLEM. HOW DO I GO BACK AND EDIT MY FILE WITHOUT COMPLETELY RESTARTING PYTHON?