ウィンドウ 7 を使用しています。Django 1.5 と Python 2.7 を使用しており、独自の Web サイトで Django サンプルを実行しようとしています。指定された構文を使用していますが、コマンドを実行すると: >>>from polls.models import Poll, Choice
構文が得られます:
Erro: G:\p\mysite>python manage.py shell Python 2.7.5 (default, May 15 2013, 22:43:36) [MSC v.1500 32 bit (Intel)] on win 32 Type "help", "copyright", "credits" or "license" for more information.(InteractiveConsole)
>>> help Type help() for interactive help, or help(object) for help about object.
>>> form polls.models import Poll File "<console>", line 1
form polls.models import Poll
^ SyntaxError: invalid syntax
私のモデル:
from django.db import models
class Poll(models.Model):
question = models.CharField(max_length=200)
pub_date = models.DateTimeField('date published')
class Choice(models.Model):
poll = models.ForeignKey(Poll)
choice_text = models.CharField(max_length=200)
votes = models.IntegerField(default=0)
私はpythonが初めてです。どんな助けでも大歓迎です。