Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #42773

problem in running a basic code in python 3.3.0 that includes HTML file

Newsgroups comp.lang.python
Date 2013-04-04 12:08 -0700
Message-ID <4b7526eb-b501-4ff8-a257-8cfefbeda413@googlegroups.com> (permalink)
Subject problem in running a basic code in python 3.3.0 that includes HTML file
From Satabdi Mukherjee <satamukh@gmail.com>

Show all headers | View raw


i have written this code and i need to run this file

def CreateEvent(str):
"This prints a passed string into this function";
   print str;
   return;

CreateEvent (print'''
content-type: text/html 
 
 <html> 
 <head> 
 <title> the list of all possible events that can be notified by our system </title> 
 </head> 
 <body> 
<form>
<input type="checkbox" name="tsunami" value="tsunami">tsunami<br>
<input type="checkbox" name="earthquake" value="earthquake">earthquake<br>
<input type="checkbox" name="volcano" value="volcano">volcano<br>
<input type="checkbox" name="hurricane" value="hurricane">hurricane<br>
<input type="checkbox" name="sinkholes" value="sinkholes">sinkholes<br>
<input type="checkbox" name="tornado" value="tornado">tornado<br>
<input type="checkbox" name="landslide" value="landslide">landslide<br>
<input type="checkbox" name="downburst" value="downburst">downburst<br>
</form>

<input type="submit" value="Submit">
</body>
</html>
''')



but it gives this error

expected an intended block.

can anyone please tell me how to overcome this problem? i am working in python 3.3.0
thank you

Back to comp.lang.python | Previous | NextNext in thread | Find similar | Unroll thread


Thread

problem in running a basic code in python 3.3.0 that includes HTML file Satabdi Mukherjee <satamukh@gmail.com> - 2013-04-04 12:08 -0700
  Re: problem in running a basic code in python 3.3.0 that includes HTML file Terry Jan Reedy <tjreedy@udel.edu> - 2013-04-04 15:48 -0400

csiph-web