python的艱難學習之路 石頭剪刀布遊戲

2021-09-27 07:39:08 字數 912 閱讀 5892

**:

a = "y"

while a == "y":

#經典的遊戲,石頭剪刀布

## 再終端輸入使用者的選擇

you = int(input('請輸入你的選擇-->1>>石頭,2>>剪刀,3>>布: '))

if you == 1:

youchoice = '石頭'

elif you == 2:

youchoice = '剪刀'

else:

youchoice = '布'

print('你的出拳是:',youchoice)

import random

computer = random.randint(1,3)

if computer == 1:

computerchoice = '石頭'

elif computer == 2:

computerchoice = '剪刀'

else:

computerchoice = '布'

print('電腦出拳:',computerchoice)

if (you == 1 and computer == 2) or (you == 2 and computer == 3) or (you == 3 and computer == 1):

print("you win!")

elif (you ==1 and computer == 3) or (you == 2 and computer == 1) or (you == 3 and computer == 2):

print("you loose!")

else:

print("tie!")

a = input('是否再玩一局--y>>繼續|n>>不玩了:')

python的艱難學習之路 列表學習總結

python中,列表是非常重要的概念,話不多說,進入正題 再插一句,再學習階段,建議大家使用pycharm進行程式的編寫工具,會糾正我們的一些 規範性 一 列表的定義 格式 listname 注意事項 定義的列表可以為空列表,或者在定義的時候,就在裡面新增元素,如下 num list 1,2,3,4...

python的艱難學習之路 實現冒泡法排序

python的列表方法sort實現了很簡潔的排序,但是為了練習列表功能,so python的列表的sort方法提供了很好用的排序功能,主要是為了練習列表的一些使用,以及邏輯思維的訓練。使用者需要輸入數字的個數,以及具體的數字 n int input 請輸入您要排序的數字個數 num list pri...

艱難的mfc之路

最近心情不是很好 還是埋頭到不會欺負我的 還有c 裡面來吧 剛開始學mfc 很多東西不是很明白 閒來無事 抄一段 進來 慢慢來吧 ifdef adxdll define declare message map private static const afx message entry messag...