the following file is located in this directory: /Users/whiteglider/Documents
name of file: server.py
this is my practice code which i just copied from http://www.tutorialspoint.com/python/python_networking.htm
import socket
s=socket.socket()
host=socket.gethostname()
port=12345
s.bind((host,port))
s.listen(5)
while True:
c, addr = s.accept()
print 'Got connection from', addr
c.send ('Thank you for connecting')
c.close()
when i run it at Terminal, i type
$ python /Users/whiteglider/Documents/server.py
then i get:
File "/Users/whiteglider/Documents/server.py", line 1
{\rtf1\ansi\ansicpg1252\cocoartf949\cocoasubrtf540
^
SyntaxError: unexpected character after line continuation character
even if i change directory going to where the server.py file actually is and run
python server.py
i still get the same result.
(mac leopard 10.5.8)
You've saved the file as a Rich Text Format file rather than a plain text file.
I don't know what editor you're using, but make sure to save the file as plain text / ASCII text, something like that, not RTF.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With