我正在使用python中的Tweet Manager程序为我的编程课程。对于作业,我应该创建一个Tweet类来存储推文的作者,推文本身以及创建推文的时间。然后,我应该创建一个Twitter程序,为用户提供一系列可供选择的选项。
当我尝试运行我的Twitter程序时,它会打开而不会出现语法错误,但会在不停止的情况下一遍又一遍地打印菜单。我无法弄清楚我的代码中是什么导致了这个问题。
这是我的Twitter代码:
import Tweet
import pickle
def main():
try:
load_file = open('tweets.dat', 'rb')
tweets = pickle.load('tweets.dat')
load_file.close()
except:
tweet_list = []
while (True):
choice = display_menu()
#Make a Tweet
if (choice == 1):
tweet_author = input("\nWhat is your name? ")
tweet_text = input("What would you like to tweet? ")
print()
if len(tweet_text) > 140:
print("Tweets can only be 140 characters!\n")
else:
print(tweet_author, ", your Tweet has been saved.")
age = 0
tweets = tweet.Tweet(tweet_author, tweet_text)
tweet_list.append(tweets)
try:
output_file = open('tweets.dat', 'wb')
pickle.dump(tweets, output_file)
output_file.close()
except:
print("Your tweets could not be saved!")
#View Recent Tweets
elif (choice == 2):
print("Recent Tweets")
print("--------------")
if len(tweet_list) == 0:
print("There are no recent tweets. \n")
for tweets in tweet_list[-5]:
print(tweets.get_author(), "-", tweets.get_age())
print(tweets.get_text(), "\n")
#Search Tweets
elif (choice == 3):
match = 0
tweet_list.reverse()
if tweet_list == []:
print("There are no tweets to search. \n")
search = input("What would you like to search for? ")
for tweets in tweet_list:
if (search in tweets.get_text()):
match = 1
if match = 1:
print("Search Results")
print("--------------")
print(tweets.get_author(), "-", tweets.get_age())
print(tweets.get_text(), "\n")
elif match == 0:
print("No tweets contained", search, "\n")
#Quit
elif (choice == 4):
print("Thank you for using the Tweet Manager!")
exit()
def display_menu():
print("Tweet Menu")
print("------------")
print()
print("1. Make a Tweet")
print("2. View Recent Tweets")
print("3. Search Tweets")
print("4. Quit")
print()
main()
答案 0 :(得分:0)
namespace AppBundle\Controller;
use Symfony\Component\HttpFoundation\RedirectResponse;
use Sonata\UserBundle\Controller\ResettingFOSUser1Controller as Controller;
use Symfony\Component\HttpFoundation\Response;
class ResettingFOSUser1Controller extends Controller
{
public function sendEmailAction()
{
$result = array('success' => false,
"error"=> true,
"data" => "1"
);
$response = new Response(json_encode($result));
$response->headers->set('Content-Type', 'application/json');
return $response;
}
}
始终返回display_menu
- 如果您不返回任何内容,则默认为
答案 1 :(得分:0)
没有问题,代码正是按照你告诉它做的。
display_menu
完全符合名称的含义:显示菜单。 main
函数在循环内调用该函数。
您实际上没有要求任何与菜单选项相对应的输入。
答案 2 :(得分:0)
您的display_menu
函数实际上没有给出值。
将该函数的最后一行(print()
)更改为
return input()
或者如果您使用的是python 2.x
return raw_input()
答案 3 :(得分:0)
显示菜单无法检索任何输入...只显示菜单。 因此,如果匹配则无关,并且无限循环。