Re: How to show visa info based on country selection in a travel form? Programming Web Development by Biiim …;/head> <body> <div class="container py-3"> <div class="row">… Re: Cannot run exe from asp.net Programming Web Development by lennyli …Run the Server**: - On the target computer, run `server.py`: ```bash python server.py ``` 2. **Run the Client**: - On your controlling …computer, run `client.py`: ```bash python client.py ``` - Replace `'REMOTE_IP_ADDRESS'` in `client.py` with the actual IP address of the… Re: Cannot run exe from asp.net Programming Web Development by lennyli > > When I run the command "python server.py" on the server pc, it held for a second, ….2 successfully, but as i said disappointingly the python server.py command didnt output any text before returning control to command… Re: Cannot run exe from asp.net Programming Web Development by Salem > When I run the command "python server.py" on the server pc, it held for a second, … Graphics.py Programming Software Development by Ghostenshell … write my code. I am using the graphics.py module. I will add the graphics program as an attachment for anyone who does… the dice program after this one. Convert graphics into a py file type. [CODE]from graphics import * def main(): win = GraphWin("Archery… Re: graphics.py help! Programming Software Development by vegaseat … from: [url]http://mcsp.wartburg.edu/zelle/python/graphics.py[/url] The module itself has some demo/test code in … top of two rectangles # using module graphics from: # http://mcsp.wartburg.edu/zelle/python/graphics.py from graphics import * # create the window/frame w… graphics.py help! Programming Software Development by Lylywhatever can anyone here help me write a code like these graphics:[url]http://www.cs.utk.edu/~booth/[/url] i have …, python.game, etc.. i need a code for only python22 (graphics.py) i can only do stick figures, it would be a… Re: graphics.py Programming Software Development by sneekula graphics.py is a simple wrapper for Tkinter written by the author of a Python book. It mostly contains renamed canvas routines. I would stick with Tkinter itself. You get more help this way since only a few folks know about this Zelle wrapper. Re: graphics.py Programming Software Development by vegaseat … this up numerous times before: [QUOTE]The graphics.py library is designed to make it very easy …python]# a program to convert Celsius to Fahrenheit using # graphics.py a simple graphical interface # also shows how to create… a crude button from graphics import * def main(): win = GraphWin("Celsius … Re: graphics.py Programming Software Development by Duoas There is no button in graphics.py. How exactly are you trying to create one? Re: Graphics.py Programming Software Development by gangster88 … + 20, topLeftY + 20)) File "C:\Python26\lib\site-packages\graphics.py", line 611, in __init__ p1 = Point(center.x-radius… Re: Graphics.py Programming Software Development by Ghostenshell … not finished. I am still working on it. [CODE]from graphics import * def main(): win = GraphWin("Dice",400,85… Re: how to create paint program in graphics.py Programming by rproffitt ….com/questions/69096268/how-to-create-a-paint-program-in-graphics-py There's a set of YouTube Tutorials about this library… something you should use beyond an intro to compsci. Since graphics.py uses tkinter.py then exclusivity is not possible. how to create paint program in graphics.py Programming by Frank_43 … wondering how to make a paint program exclusively from graphics.py not tkinter.py Here is my code by I don't know… how to continue it from graphics import * win=GraphWin('Buffet Hot… Re: how to create paint program in graphics.py Programming by Reverend Jim I'm not familiar with graphics.py. It apparently does not come with python. I've been using mostly wxPython, but you might want to consider the turtle module that comes with python. It will likely be a lot more robust that graphics.py. Patchworks using Python graphics (graphics.py) Programming Software Development by Kristians … no idea how to draw them on window by using graphics.py in Python 3.5 Basically I got following patch designs… graphics.py Programming Software Development by gusbear when i start my program i write import graphics * def main(): but then when i try to create a button it doesn't work anyone know the problem??thanks Graphics.py Programming Software Development by gangster88 … an error when I try to execute it [code] from graphics import * def main(): colour = raw_input("Enter the colour: "… Re: For loop and graphics.py Programming Software Development by vegaseat … to do this ... [code]# experiment with graphics.py # from: http://mcsp.wartburg.edu/zelle/python/graphics.py # draw five alternating color concentric circles from… graphics import * def main(): win = GraphWin("My… Re: Graphics.py Programming Software Development by TrustyTony Your programs are just sequence of actions with fixed constant parameters repeatedly used again and again. Use loops, variables and functions. Re: graphics.py help! Programming Software Development by Lylywhatever thank you! graphics python help Programming Software Development by Lylywhatever … sticking with the face?? please help! i am using graphics.py [CODE]from graphics import * import random import time # create the window/frame… Re: Patchworks using Python graphics (graphics.py) Programming Software Development by Gribouillis Hello This thread looks very close to your issue [https://www.daniweb.com/programming/software-development/threads/468573/help-with-improving-the-code-using-the-python-graphic-py-john-zelle](https://www.daniweb.com/programming/software-development/threads/468573/help-with-improving-the-code-using-the-python-graphic-py-john-zelle) Re: graphics.py Programming Software Development by woooee easygui is a better solution for a simple interface. If you want to learn how to program using GUIs, use Tkinter or one of the other toolsboxes. [url]http://www.ferg.org/easygui/[/url] Re: graphics.py Programming Software Development by Ene Uran To me the Tkinter GUI toolkit is about as simple as it comes. If you really want to get into fancy widgets (html, plotting, sound), then switch to wxPython. That however is somewhat of a steep learning curve. Re: Graphics.py Programming Software Development by SgtMe What error do you get? Re: Graphics.py Programming Software Development by vegaseat The correct arguments for Circle() are (center_point, radius) and you gave two points. Re: Graphics in Python Programming Software Development by Gribouillis It could be John Zelle's module [graphics.py](http://mcsp.wartburg.edu/zelle/python/). Re: Importing Graphics Module Programming Software Development by SMIFMD When I placed the graphics.py file in the "site packages" folder, the … File "G:\CSI 31\house.py", line 4, in <module> from graphics import * ImportError: Bad magic number …in C:\Python26\lib\site-packages\graphics.pyc What is "… Re: Importing Graphics Module Programming Software Development by Gribouillis … "Bad magic number?"[/QUOTE] Did you place a 'graphics.py' (good) or a 'graphic.pyc' (bad) in the site-packages…' and run again, it may work. Otherwise, you can attach graphics.py to a post, so that I try it with my…