嘿,我有一个很简单的问题,我无法在任何地方找到它。基本上我需要知道如何使用户输入问题,然后将识别来自该输入的关键字。现在,这些关键字将存储在几个文本文件中,并且必须打开相关的文本文件,例如关键词水打开水文本文件然后向用户呈现一系列是或否问题,最终将导致两个结果。
我真的到处都看过如何做到这一点,所有代码看起来都不同或者不是我想要的。任何有关代码方面的帮助都将不胜感激。
#Task 2 Trouble-Shooter 1.0
#Zacharriah River Howells
file = open('problem1','r')
import time
print('Hello and welcome to the mobile phone Trouble-Shooter!')
time.sleep(2)
print('Please input what is wrong with your phone')
print file.read()
这是我到目前为止所做的工作,直到最后一行。
答案 0 :(得分:0)
试试这个:
import time
print('Hello and welcome to the mobile phone Trouble-Shooter!')
time.sleep(2)
need = raw_input('Please input what is wrong with your phone ')
file = open(need,'r')
print file.read()
{2}内置了raw_input
函数,它返回一个字符串。接下来,使用输入的名称打开文件并打印出其内容。