473,836 Members | 1,903 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

SyntaxError: invalid syntax

I'm new to Python and I don't understand what I'm doing wrong.

I'm running windows xp.

In the command line window, I type:
Python Sudoku.py

and I get the response"

SyntaxError: invalid syntax

If anyone cane help me I'd be very grateful.
Dec 27 '05 #1
5 20355
On Tue, 27 Dec 2005 07:40:12 +0000, DIBS wrote:
I'm new to Python and I don't understand what I'm doing wrong.

I'm running windows xp.

In the command line window, I type:
Python Sudoku.py

and I get the response"

SyntaxError: invalid syntax

If anyone cane help me I'd be very grateful.


Please post the *full* traceback of the error, not just the last
description.

For example, something like this:
x = x+*9

File "<stdin>", line 1
x = x+*9
^
SyntaxError: invalid syntax
Just "SyntaxErro r" on its own is not enough to tell what is going on,
except to say that it sounds like a bug in the program you are trying to
run.
--
Steven.

Dec 27 '05 #2
Steven D'Aprano wrote:
Please post the *full* traceback of the error, not just the last
description.

For example, something like this:
x = x+*9

File "<stdin>", line 1
x = x+*9
^
SyntaxError: invalid syntax

Just "SyntaxErro r" on its own is not enough to tell what is going on,
except to say that it sounds like a bug in the program you are trying to
run.


or that he's using a program written for a newer version of Python than
the one he has on his machine...

</F>

Dec 27 '05 #3
>>> python sudoku.py
File "<stdin>", line 1
python sudoku.py
^
SyntaxErro r: invalid syntax


Thanks for your help.
The above is the extact message.

DIBS


"Steven D'Aprano" <st***@REMOVETH IScyber.com.au> wrote in message
news:pa******** *************** *****@REMOVETHI Scyber.com.au.. .
On Tue, 27 Dec 2005 07:40:12 +0000, DIBS wrote:
I'm new to Python and I don't understand what I'm doing wrong.

I'm running windows xp.

In the command line window, I type:
Python Sudoku.py

and I get the response"

SyntaxError: invalid syntax

If anyone cane help me I'd be very grateful.


Please post the *full* traceback of the error, not just the last
description.

For example, something like this:
x = x+*9

File "<stdin>", line 1
x = x+*9
^
SyntaxError: invalid syntax
Just "SyntaxErro r" on its own is not enough to tell what is going on,
except to say that it sounds like a bug in the program you are trying to
run.
--
Steven.

Dec 27 '05 #4
"DIBS" <ma*@legs.com > wrote:
python sudoku.py File "<stdin>", line 1
python sudoku.py
^
SyntaxErro r: invalid syntax
Thanks for your help.
The above is the extact message.


that looks like the Python interpreter window, not the Windows command-
line window.

To run complete Python programs, type "python filename" in the Windows
command-line window (or double-click on filename from the explorer).

the FAQ has more information:

http://www.python.org/doc/faq/window...-under-windows

</F>

Dec 27 '05 #5
On Tue, 27 Dec 2005 09:32:18 GMT
"DIBS" <ma*@legs.com > wrote:
python sudoku.py File "<stdin>", line 1
python sudoku.py
^
SyntaxErro r: invalid syntax
Thanks for your help.
The above is the extact message.


Based on the ">>>" prompt, I'd say you tried to type this
into the python interactive interpreter. It's supposed to be
a shell command -- i.e. you *invoke* the python interpreter
to run the file from the command line.

If you are already running python, then you might get what
you want by importing the module:
import sudoku


but whether that's what you really want or not depends on
how the module is meant to be used (is it a "module" or a
"script"?).

Cheers,
Terry

--
Terry Hancock (ha*****@Anansi Spaceworks.com)
Anansi Spaceworks http://www.AnansiSpaceworks.com

Dec 27 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
10716
by: Bradley Kite | last post by:
Hi all. I'm trying to diagnose/solve a problem with internet explorer, whereby sometimes the form submits, and other times IE produces an 'invalid syntax' error. First, I have a form, and within the form is a button bar and a <div> block which contains a table of parameters. The div block is used to create a layer.
0
1601
by: Mark Phanides | last post by:
My ASP.NET application intermittantly (but always at same point) redirects to the 'Invalid Syntax Error' web page for some unknown reason. I've created a ASP.NET application written in VB.NET with just two ASPX pages, Login.aspx and Main.aspx (both dynamically generated on each load). Users first hit Login.aspx which prompts for login details, and then performs some custom authenication and creates some session variables. If authentication is...
0
1296
by: cesare | last post by:
hi, i'm very new to python and am experiencing the following problem: an identical program that runs on certain computers crashes on other machines due to Carriage Returns (CR; 0x0a) that now appear in the source code. I guess it's some kind of character encoding issue, i.e. ways of saving the source files... I spent a lot of time trying to fix the problem but wasn't successful until now.
10
6423
by: ronrsr | last post by:
no matter where I place this imported file,the statement after it in the main program gets a syntax error, regardless of the syntax. I think I may have changed something in this file, but I'm stuck. Can anyone help? #!/usr/local/bin/python # Copyright 2004 by Stephen Masterman #Change the db connection details here.
4
1806
by: Kai Kuehne | last post by:
Hi list! I'm using pygmalion (magnolia api access lib) and want to use the following method that it is offering: magnolia.bookmarks_find(person='user', from=some_datetime) As you may noticed, from is a keyword argument and so I get the following error message from python: File "<ipython console>", line 1
7
3919
by: alf | last post by:
Hi, I wonder why it is an invalid syntax: File "<stdin>", line 1 if 1: if 1: if 1: print 1 or
6
6227
by: Nathan Pinno | last post by:
Why does my compiler say invalid syntax and then highlight the quotation marks in the following code: # This program is to find primes. primes = import math import gmpy while 1: run = int(raw_input("Do you want to calculate primes? 1 = yes and 2 = no. "))
2
1606
by: quocduan | last post by:
I am learning Python, and i get an error in following: i already create a module hello.py in following: def print_func(par): print par return then, i open new window of Python, and type import commands:
1
7431
by: Jake Colborn | last post by:
Hey, I just picked up python again after not coding with it for many years. But I wanted to throw some simple scripts together to see if I remember all the functionality so far. Now I've got this code: #!/usr/bin/python # A program developed to see if the temperature is Celcius or Farhenheit # and than convert it to the other in a more user friendly manner import os, sys import math
0
9810
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9654
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10526
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10565
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10237
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9348
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5641
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5809
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3999
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.