本文共 599 字,大约阅读时间需要 1 分钟。
#!/usr/bin/python
#-- coding: utf8--import random #导入随机数的模块computer = random.choice(['石头', '剪刀', '布'])
player = raw_input('请出拳(石头/剪刀/布): ')print "Your choice: %s, Computer's choice: %s" % (player, computer)
if player == '石头':if computer == '石头':print '平局'elif computer == '剪刀':print 'You WIN!!!'else:print 'You LOSE!!!'elif player == '剪刀':if computer == '石头':print 'You LOSE!!!'elif computer == '剪刀':print '平局'else:print 'You WIN!!!'else:if computer == '石头':print 'You WIN!!!'elif computer == '剪刀':print 'You LOSE!!!'else:print '平局'转载于:https://blog.51cto.com/13460572/2061767