Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #72016 > unrolled thread
| Started by | dimmaim@gmail.com |
|---|---|
| First post | 2014-05-25 09:01 -0700 |
| Last post | 2014-05-26 03:07 +1000 |
| Articles | 2 — 2 participants |
Back to article view | Back to comp.lang.python
How to pass variable through scipts dimmaim@gmail.com - 2014-05-25 09:01 -0700
Re: How to pass variable through scipts Chris Angelico <rosuav@gmail.com> - 2014-05-26 03:07 +1000
| From | dimmaim@gmail.com |
|---|---|
| Date | 2014-05-25 09:01 -0700 |
| Subject | How to pass variable through scipts |
| Message-ID | <ad229845-3b2d-4238-ad68-db9c8493801c@googlegroups.com> |
My code has this structure:
class Example(wx.Frame,listmix.ColumnSorterMixin):
def __init__(self,parent):
wx.Frame.__init__(self,parent)
self.InitUI()
def InitUI(self):
..... some other functions and other stuff
when a button is clicked this function is called and i take the self.id_number which is a number
def OnB(self, event):
self.id_number = self.text_ctrl_number.GetValue()
xx = latitude[int(self.id_number)]
yy = longitude[int(self.id_number)]
i want to pass the variables xx and yy to a different script called application. This script by calling it with import, automatically pop up a window. I need by clicking the button that is linked with OnB definition to pop up the window from the other script as it does when i am running it alone and display lets say for example the variables xx and yy, how can i do it
[toc] | [next] | [standalone]
| From | Chris Angelico <rosuav@gmail.com> |
|---|---|
| Date | 2014-05-26 03:07 +1000 |
| Message-ID | <mailman.10304.1401037640.18130.python-list@python.org> |
| In reply to | #72016 |
On Mon, May 26, 2014 at 2:01 AM, <dimmaim@gmail.com> wrote: > i want to pass the variables xx and yy to a different script called application. This script by calling it with import, automatically pop up a window. I need by clicking the button that is linked with OnB definition to pop up the window from the other script as it does when i am running it alone and display lets say for example the variables xx and yy, how can i do it > When you import another script, you gain access to its functions and classes and such. All you need to do is write your function to take a couple of arguments, and then pass xx and yy as those arguments. I recommend you read and work through the Python tutorial - one of these, depending on which version of Python you use: https://docs.python.org/2/tutorial/ https://docs.python.org/3/tutorial/ It'll explain a lot of these sorts of things. Chris Angelico
[toc] | [prev] | [standalone]
Back to top | Article view | comp.lang.python
csiph-web