Python and BOO Programming Software Development by bumsfeld A somewhat strange find in the Pyton Code Snippets here on this site. Is the BOO language very much like Python? It seems nice that one can compile and interpret the same language. Will it be worth to translate Python code to BOO just to get a nice small exe file? Does it have something like wxPython? Re: ctypes(python 2.5) cant work in win2000 platform!!! Programming Software Development by thian_seng Hi All, Urgent SOS!!! I developed my project using pyton 2.5 under winXP and had an issue in loading … "ciao" from Italy!! Community Center Say Hello! by balena … UML/C+++ !! But I already worked in JAVA/PHP/ASP/PYTON. but Never with the pointer!!! I signed here because when… Displaying .jpg in Tkinter (Python 3.1) Programming Software Development by Lingson … use the PIL package. But the PIL packages doesnt support Pyton 3.1 yet (from what I read on the PIL… Controlling two Text widgets with one scrollbar Programming Software Development by G_S … modified it, and it now works with text widgets and pyton 2.x. The problem is: the code is too advanced… Python 3.1.3 Programming Software Development by FAITH2011 … are any good Videos or computer based book that teach Pyton 3.1.3 for begginers that could be recommended. The… Starting with Python Programming Software Development by mang0 I just recently (one week ago) started learning Pyton. I'm using 2.7 as I heard that is … Python3 __call__ Question Programming Software Development by Ephexeve I am reading a Python book for Pyton 2.5 (But I am doing Python 3). I am … Father finder program, Sort algorithm, List-to-dictionary problems: Please help Programming Software Development by Tyler212 hi, I am currently taking a pyton programming class and having some extreme difficulties. I am in … Sentence Capitalization in Python Programming Software Development by pythonstudent11 I am in course that uses Gaddis' Starting Out With Pyton 2nd Edition. There is a problem in the course that … Multiprocessing causes BSOD Programming Software Development by delta_frost I have this simple first multiprocessing code in pyton,but I encounter a BSOD when running it.Can anyone … Little print newline problem Programming Software Development by ddanbe … finally decided to get my toes wet. So I installed Pyton 3.3.2 amd the plugin for Visual Studio 2010… Re: What's the story behind your username? Community Center Geeks' Lounge by mike_2000_17 … what it means! >Also python (the animal) is spelled pyton in Finnish. Yeah, when a finnish colleague of mine proposed… to use "pyton" for a project we had, said in the finnish… Re: What's the story behind your username? Community Center Geeks' Lounge by mrnutty … it means! > > Also python (the animal) is spelled pyton in Finnish. > Yeah, when a finnish colleague of mine… proposed to use "pyton" for a project we had, said in the finnish… Re: For loops with number Programming Software Development by MrShoot I made some progress, I'm using the range function built in pyton. All good now :) Re: Working with python for fun, Need some help Programming Software Development by Ene Uran … you can use the slicing operator to help out: [code=pyton]t1 = '1230' # --> 12:30 t2 = '100' # --> 1:00… Re: Converting a Python Programme to C++ Programming Software Development by hacker9801 I know Pyton and I'm bored, so here (done in 5 minutes, … Re: Backgrounds in python Programming Software Development by TheOneElectroni ….python.org/moin/TkInter"]Tkinter[/URL] (already included in pyton and -from my point of view- the simplest but also… Re: Speeding up finding all spaces (' ') in text Programming Software Development by Ene Uran … of debugging Python programs pythondemic: something bad that lots of Pyton programmers do pythonerous: something hard to do in Python pythong… Re: How to extact photo from html doc Programming Software Development by Gribouillis [QUOTE=akie2741;1018382]it seems complex and hard to install...[/QUOTE] what's your os ? For windows, all you have to do is to download the MS windows installer for your version of pyton and your processor (32 or 64 bits) from [url]http://pypi.python.org/pypi/lxml/2.2.2[/url] and run the installer. Re: What does PyArg_Parse() do in detail?? Programming Software Development by sneek Hi, does anybody have a solution to fix this problem. I can't believe that nobody ever wants to printf() a Pyton-String-Object within a C program. Jonny Re: What does PyArg_Parse() do in detail?? Programming Software Development by Gribouillis … can't believe that nobody ever wants to printf() a Pyton-String-Object within a C program. Jonny[/QUOTE] Few people… Re: make a program wait for a few seconds... Programming Software Development by Gribouillis Looking into pyton 2.6 source code (timemodule.c) we find this implementation … Re: Beginner's Program Trouble Programming Software Development by snippsat [CODE]#It is a good thing that pyton 3 only has input not raw_input and input as python … Re: Beginner's Program Trouble Programming Software Development by JordanWalcaraz [QUOTE=snippsat;1189384][CODE]#It is a good thing that pyton 3 only has input not raw_input and input as python … Re: encoding in python3.1 Programming Software Development by G_S … display the special characters corectly. This means that, somehow, the pyton program is reading ansii, but not utf-8. Re: Fibonacci Sequence Programming Software Development by Christopher A. This is what I would do: [code=python] # Filename: fib.py #!usr/bin/pyton a = int(input('Enter length: ')) x = 0 y = 1 for i in range(a): print(x) print(y) x = x + y y = x + y [/code] This is in python 3.1.3 Re: What's the story behind your username? Community Center Geeks' Lounge by TrustyTony I was dully my own first name and middle initial due to populárity of the name. Then I joined my favorite language sign with my name and the combination happens to be Python in Polish, so why not. (even I have not much connection to that country). Also python (the animal) is spelled pyton in Finnish. Re: dictionary in Python Programming Software Development by glenwill101 if you want to know about dictionaries please look at the tutorial on the pyton website [Here](http://docs.python.org/tutorial/datastructures.html#dictionaries) Re: No such file or directory Programming Software Development by rocket3443 if i have understood this correctly, i can access the file via its location? or do i have to write the file in python script? i thought i could access the file with just type the name of the file/ its location, and then read it. (i tried with /Users/...../nummer.txt) i am 100% sure the file is in the same folder as the pyton file.