Re: ImportError: No module named multipli

2013-03-24 Thread yahya Kacem
+Mark Lawrence sorry for that I'm new here and I didn't know about that. -- http://mail.python.org/mailman/listinfo/python-list

Re: ImportError: No module named multipli

2013-03-24 Thread yahya Kacem
from multipli import table > > table(3, 20) > > os.system("pause") > > > > when i run this: > > > > python3 test > > > > I get this error: > > Traceback (most recent call last): > > File "t

Re: ImportError: No module named multipli

2013-03-24 Thread Mark Lawrence
python3 test I get this error: Traceback (most recent call last): File "test", line 5, in from multipli import table ImportError: No module named multipli both files are in the same directory. any help thanks in advance. Thanks that did it. May I ask what di

Re: ImportError: No module named multipli

2013-03-24 Thread Chris Angelico
On Mon, Mar 25, 2013 at 3:10 AM, Mark Lawrence wrote: > On 24/03/2013 15:48, Chris Angelico wrote: >> >> On Mon, Mar 25, 2013 at 2:35 AM, yahya Kacem wrote: >>> >>> file named multipli: >>> >>> and file naled test: >>> >>> from multipli import table >> >> >> Try naming it multipli.py >> >> C

Re: ImportError: No module named multipli

2013-03-24 Thread Mark Lawrence
On 24/03/2013 15:48, Chris Angelico wrote: On Mon, Mar 25, 2013 at 2:35 AM, yahya Kacem wrote: file named multipli: and file naled test: from multipli import table Try naming it multipli.py ChrisA Before or after fixing the infinite loop? :) -- Cheers. Mark Lawrence -- http://ma

Re: ImportError: No module named multipli

2013-03-24 Thread yahya Kacem
from multipli import table > > table(3, 20) > > os.system("pause") > > > > when i run this: > > > > python3 test > > > > I get this error: > > Traceback (most recent call last): > > File "

Re: ImportError: No module named multipli

2013-03-24 Thread Chris Angelico
On Mon, Mar 25, 2013 at 2:35 AM, yahya Kacem wrote: > file named multipli: > > and file naled test: > > from multipli import table Try naming it multipli.py ChrisA -- http://mail.python.org/mailman/listinfo/python-list

Re: ImportError: No module named multipli

2013-03-24 Thread Kwpolska
s: > > python3 test > > I get this error: > Traceback (most recent call last): > File "test", line 5, in > from multipli import table > ImportError: No module named multipli > both files are in the same directory. > any help thanks i

ImportError: No module named multipli

2013-03-24 Thread yahya Kacem
g : utf-8 -* import os import sys from multipli import table table(3, 20) os.system("pause") when i run this: python3 test I get this error: Traceback (most recent call last): File "test", line 5, in from multipli import table