I am very new to Python. Right now I am using two tools. I am trying the tutorials at codecademy.com which is walking me through it pretty slow. The second thing I am doing is using codeskulptor to try out a few things I have learned at codecademy.
I am getting a mismatch. The example I am working on is: (codecademy) from datetime import datetime now = datetime.now() current_year = now.year current_month = now.month current_day = now.day Putting that in codeskulptor gets Line 4: ImportError: No module named datetime The commands I am used to in codeskulptor is something like import random import math import simplegui import datetime < Changing this to import instead of from datetime import datetime still doesn't work. -- https://mail.python.org/mailman/listinfo/python-list