http://127.0.0.1:8000/boards/1/topics/2/posts/2/edit/ http://127.0.0.1:8000/ #boards/views.py from django.views.generic import UpdateView from django.utils import timezone class PostUpdateView(UpdateView): model = Post fields = ('message', ) template…
#1.编写一个程序,询问用户要租赁什么样的汽车,并打印. car = input("What's kind of cars dou you want to rent?,sir:") print('Let me see if I can find you a '+ car) print('\n') #2.编写一个程序,询问用户有多少人用餐.如果超过8人,就打印一条消息,指出没有空桌:否则指出有空桌 table = input("尊敬的先生/女士,请问订餐人数是多少?:"…