作業6 凱撒密碼 GDP格式化輸出 99乘法表

2022-08-02 19:54:09 字數 635 閱讀 5140

愷撒密碼的編碼

p=input('

明文:'

)print('

密文:',end=''

)for i in

p:

print(chr(ord(i)+3),end='')

2、國家名稱 gdp總量(人民幣億元)

中國 ¥765873.4375

澳大利亞 ¥ 78312.4375

(國家名稱左對齊,數字右對齊,千分位,2位小數)

print('國家名稱 gdp總量(人民幣億元)')

print(''.format('中國 ¥',765873.4375))

print(''.format('澳大利亞 ¥',78312.4375))

3、打出99乘法表

凱撒密碼 GDP格式化輸出 99乘法表

1.愷撒密碼的編碼 plaincode input 明文 print 密文 end for i in plaincode print chr ord i 3 end 2.國家名稱 gdp總量 人民幣億元 中國 765873.4375 澳大利亞 78312.4375 國家名稱左對齊,數字右對齊,千分位...

凱撒密碼 GDP格式化輸出 99乘法表

愷撒密碼的編碼 國家名稱 gdp總量 人民幣億元 中國 765873.4375 澳大利亞 78312.4375 國家名稱左對齊,數字右對齊,千分位,2位小數 打出99乘法表 1.答 s input 請輸入密文 print 明文 end for i in s print chr ord i 3 end...

凱撒密碼 GDP格式化輸出 99乘法表

1.凱撒密碼的編碼 a input 明文 print 密文 end for i in a print chr ord i 5 end 2.國家名稱 gdp總量 人民幣億元 中國 765873.4375 澳大利亞 78312.4375 國家名稱左對齊,數字右對齊,千分位,2位小數 print 國家名稱...