python基礎 條件迴圈字串

2022-09-13 10:00:13 字數 2009 閱讀 7051

while

true:

a = int(input('

攝氏度轉換為華氏溫度請按1\n華氏溫度轉化為攝氏溫度請按2\n'))

if a == 1:

celsius = float(input('

輸入攝氏溫度:'))

fahreaheit = (celsius + 1.8) + 32 #

f = c+9/5+32

print('

攝氏溫度轉為華氏溫度為

'.format(celsius, fahreaheit))

elif a == 2:

celsius1 = float(input('

輸入華氏溫度:'))

fahreaheit1 = (celsius1 - 32) * 5 / 9

print('

華氏溫度轉化為攝氏溫度為

第二題

import

random

secret = random.randint(1,20)

#print(secret)

print('

-------猜我新買的玩具多少錢!--------')

guess = -1

while guess !=secret:

a = input('

請輸入數字:')

guess =int(a)

if guess >secret:

print('

輸入的數字太大!')

elif guess

print('

輸入的數字太小!')

else

:

print('

猜對了!')

第三題

s ='

131004199852134451

'a=s[:2]

b=s[2:4]

c=s[4:6]

d=s[6:14]

e=s[14:16]

f=s[-2]

g=s[-1]

print('

省份{}

'.format(a))

print('

地市{}

'.format(b))

print('

縣區{}

'.format(c))

print('

出生日期{}

'.format(d))

print('

順序碼{}

'.format(e))

num =int(f)

if (num % 2) ==0:

print('

性別女{}

'.format(num))

else

:

print('

性別男{}

'.format(num))

print('

校驗碼{}

第四題

for i in range(2,10):

python條件字串 如何實現條件字串格式?

我在python中開發了乙個基於文字的遊戲,我遇到了乙個例項,我想根據一組條件對字串進行不同的格式化。具體來說,我想顯示描述房間中專案的文字。我希望在檔案室的描述中顯示此項,前提是且僅當所討論的專案物件在檔案室物件的專案列表中。按照設定的方式,我覺得簡單地基於條件連線字串不會按我的要求輸出,最好為每...

python 變數 字串 條件語句 迴圈結構

變數 變數名就像我們的名字,在計算機中,把乙個值賦值給乙個名字後,ta就會儲存在記憶體中,我們稱之為變數。這種行為叫做 給變數賦值 使用 來賦值。字串的拼接 字串和字串的串聯 例 a b c b string,c string 變數名可以包括字母 數字 下劃線,但是不能以數字開頭 變數名區分大小寫。...

條件 迴圈 函式定義 字串操作

2 a.用迴圈畫五角星 2 b用迴圈畫同心圓 2 c.用while迴圈畫太陽花 2 d.用函式定義畫五個五角星 import turtle turtle.bgcolor red turtle.color yellow turtle.fillcolor yellow def guo goto x,y ...