Re: [Tutor] how to generate random numbers in Python

2013-10-05 Thread Bhanu Pratap Singh
ilto:tutor-bounces+bhanubais=gmail@python.org] On Behalf Of Joe Jacques Sent: 03 October 2013 10:02 PM To: tutor@python.org Subject: [Tutor] how to generate random numbers in Python Problems in the link http://home.manhattan.edu/~ankur.agrawal/cmpt101/assgn5.txt S

Re: [Tutor] how to generate random numbers in Python

2013-10-03 Thread bob gailer
On 10/3/2013 12:31 PM, Joe Jacques wrote: Hi and welcome to the tutor list. Be aware that we are a few volunteers who enjoy assisting when you have tried something and are stuck. As you may have gathered from Mark's response - we don't do homework for you. Were you expecting that, or if not what

Re: [Tutor] how to generate random numbers in Python

2013-10-03 Thread xDog Walker
On Thursday 2013 October 03 09:31, Joe Jacques wrote: > Problems in the link > > http://home.manhattan.edu/~ankur.agrawal/cmpt101/assgn5.txt > > Sent from my iPhone Python 2.7.2 (default, Oct 10 2011, 10:47:36) [GCC 4.1.2 20061115 (prerelease) (SUSE Linux)] on linux2 Type "help", "copyright", "cre

Re: [Tutor] how to generate random numbers in Python

2013-10-03 Thread Mark Lawrence
On 03/10/2013 17:31, Joe Jacques wrote: Problems in the link http://home.manhattan.edu/~ankur.agrawal/cmpt101/assgn5.txt Sent from my iPhone Sorry but if you want us to do your work you'll have to send a suitably sized cheque to the PSF, where the size refers to the amount written in words

[Tutor] how to generate random numbers in Python

2013-10-03 Thread Joe Jacques
Problems in the link http://home.manhattan.edu/~ankur.agrawal/cmpt101/assgn5.txt Sent from my iPhone ___ Tutor maillist - Tutor@python.org To unsubscribe or change subscription options: https://mail.python.org/mailman/listinfo/tutor

Re: [Tutor] how to generate random numbers in Python

2005-06-04 Thread Danny Yoo
On Fri, 3 Jun 2005, Xiaoxia Xu wrote: > I tried to use a Python library module random() to generate some noise > to my data. But the interpreter gave me an error message saying > NameError: name 'random' is not defined. I thought this error is > because I don't have the pertinent library includ

Re: [Tutor] how to generate random numbers in Python

2005-06-04 Thread Pujo Aji
Don't forget to call : import random try: import random print random.randint(2,8) print random.random() good luck pujo On 6/4/05, Xiaoxia Xu <[EMAIL PROTECTED]> wrote: > Hello, > > I tried to use a Python library module random() to generate some > noise to my data. But the interpreter gave me

[Tutor] how to generate random numbers in Python

2005-06-04 Thread Xiaoxia Xu
Hello, I tried to use a Python library module random() to generate some noise to my data. But the interpreter gave me an error message saying NameError: name 'random' is not defined. I thought this error is because I don't have the pertinent library included. Could anyone tell me how can I ge