[Tutor] SOME KNOWLEDGE OF IRONPYTHON?

2012-02-26 Thread JOSEPH MARTIN MPALAKA
Hullo to you All, Has any one used IronPython studio from microsoft Visual Studio. Am so new into IronPython please. It’s missing a help menu Tutorial link of "HOW TO" along the menu bar, so as to be used in learning and knowing how make out something. Could one be able to structure for me this c

Re: [Tutor] SOME KNOWLEDGE OF IRONPYTHON?

2012-02-26 Thread Steven D'Aprano
JOSEPH MARTIN MPALAKA wrote: Hullo to you All, Has any one used IronPython studio from microsoft Visual Studio. Am so new into IronPython please. It’s missing a help menu Tutorial link of "HOW TO" along the menu bar, so as to be used in learning and knowing how make out something. Could one be

Re: [Tutor] SOME KNOWLEDGE OF IRONPYTHON?

2012-02-26 Thread Alan Gauld
On 26/02/12 11:07, JOSEPH MARTIN MPALAKA wrote: It’s missing a help menu Tutorial link of "HOW TO" along the menu bar, so as to be used in learning and knowing how make out something. Could one be able to structure for me this code in IronPython OR, to find me any other tutorial documentation of

Re: [Tutor] Help with Python Program

2012-02-26 Thread Carolina Dianne LaCourse
First off I want to really thank you for all of the help! I am in my first semester as I started as a non traditional student in January. Even though I am in an intro class I think that many of my class mates had more of a c/s foundation in high then I did. It took me a few tries but I did finally

Re: [Tutor] Help with Python Program

2012-02-26 Thread Robert Sjoblom
> import random #import random number generator module > target = random.randint(1,100) #generates random number between 1 and 100 > guess = float(raw_input('pick a number between 1 and 100')) > while guess != target: >    if guess < target: print 'too low' >    elif guess > target: print 'too high

[Tutor] roman to arabic

2012-02-26 Thread Sukhpreet Sdhu
Hi I just wrote python code to convert roman to arabic numerals, but its not working. Can you just check where the problem is and way to correct that. So here is my python code import string print "Welcome to the numeric conversion program" print "Please enter command" data=raw_input() now = 0 pre

Re: [Tutor] roman to arabic

2012-02-26 Thread Mark Lawrence
On 26/02/2012 23:29, Sukhpreet Sdhu wrote: Hi I just wrote python code to convert roman to arabic numerals, but its not working. Can you just check where the problem is and way to correct that. So here is my python code import string print "Welcome to the numeric conversion program" print "Pleas

Re: [Tutor] roman to arabic

2012-02-26 Thread Walter Prins
Hi , On 26 February 2012 23:29, Sukhpreet Sdhu wrote: > Hi > I just wrote python code to convert roman to arabic numerals, but its not > working. How exactly is it not working? Please don't make us guess or work more than neccesary trying to help you... > Can you just check where the problem

Re: [Tutor] roman to arabic

2012-02-26 Thread Alan Gauld
On 26/02/12 23:29, Sukhpreet Sdhu wrote: import string Are you using a very old versioon opf python? If not you should not use string. The built in string methods can do everything you want without resorting to string. print "Welcome to the numeric conversion program" print "Please enter com

Re: [Tutor] roman to arabic

2012-02-26 Thread bob gailer
On 2/26/2012 6:29 PM, Sukhpreet Sdhu wrote: Hi I just wrote python code to convert roman to arabic numerals [snip] Yuk what a mess. May I suggest you start with a much simpler program, which is to take a roman number between 1 and 3 (just i's) and convert that. First describe how you'd conv