【发布时间】:2018-12-20 02:49:20
【问题描述】:
我的代码是:
print("you slowly open your eyes and look around.\n")
print
print("The room you are in has a chest of drawers in the corner, a nightstand, and a loose floorboard.\n")
print
place = input ('What do you examine first: ' )
print("you inspect the place. Underneath you find a small stick.")
不幸的是,当我测试它时,最后一个打印序列显示:
你检查这个地方。在下面你会发现一根小棍子
而不是说:
您检查地板/橱柜/床头柜。在下面你会发现一根小棍子。
我做错了什么?
【问题讨论】:
标签: python-3.x