<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<META content="MSHTML 6.00.2800.1458" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT face=Arial size=2>I am trying to figure out why my I can't get one 
module to import to the other. Here is what I have.</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>print "Welcome to the age program."<BR>print "This 
program will determine whether you are a child, adult, legal to drink beer or a 
senior citizen."<BR>age = input("How old are you? ")<BR>if age &lt; 
(18):</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>&nbsp;&nbsp;&nbsp; print "Congratulations, your a 
kid."</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>elif age == (19 or 20):<BR>&nbsp;&nbsp;&nbsp; 
<BR>&nbsp;&nbsp;&nbsp; print "Congratulations, you're an adult."</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>elif age &gt;= (21) and age &lt; 
(65):<BR>&nbsp;&nbsp;&nbsp; print "Congratulations, you're old enough to 
drink."</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>elif age &gt; (65):<BR>&nbsp;&nbsp;&nbsp; print 
"Congratulations, you're a senior citizen. You get a discount for being 
old."</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV><FONT face=Arial size=2>
<DIV><BR>import add</DIV>
<DIV>&nbsp;</DIV>
<DIV>print " Thank you for trying this product. Please come again."</DIV>
<DIV>&nbsp;</DIV>
<DIV><BR>exit = input ()<BR>&nbsp;&nbsp;&nbsp; </DIV>
<DIV>&nbsp;</DIV>
<DIV>here is what the import add is: </DIV>
<DIV>&nbsp;</DIV>
<DIV>def add():<BR>&nbsp;&nbsp;&nbsp; print "Your age divided by 2 is", age / 
2<BR>&nbsp;&nbsp;&nbsp; print "Your age times 10 is", age * 
10<BR>&nbsp;&nbsp;&nbsp; print "I hope this works. "</DIV>
<DIV>&nbsp;</DIV>
<DIV>They are both in the same directory on my c drive as well.</DIV>
<DIV>It wont import it.??</FONT></DIV></BODY></HTML>