python輸入及字元數字的轉換

2021-08-19 20:38:09 字數 903 閱讀 7753

參考文章:

#!/usr/bin/python3

str = input("請輸入:");

print ("你輸入的內容是: ", str)

int

(x [,base ]) 將x轉換為乙個整數

long

(x [,base ]) 將x轉換為乙個長整數

float

(x ) 將x轉換到乙個浮點數

complex

(real [,imag ]) 建立乙個複數

str(x ) 將物件 x 轉換為字串

repr

(x ) 將物件 x 轉換為表示式字串

eval

(str ) 用來計算在字串中的有效python表示式,並返回乙個物件

tuple

(s ) 將序列 s 轉換為乙個元組

list

(s ) 將序列 s 轉換為乙個列表

chr(x ) 將乙個整數轉換為乙個字元

unichr

(x ) 將乙個整數轉換為unicode字元

ord(x ) 將乙個字元轉換為它的整數值

hex(x ) 將乙個整數轉換為乙個十六進製制字串

oct(x ) 將乙個整數轉換為乙個八進位制字串

Python 字元ASCII與數字之間的轉化

python 用到了乙個將乙個數字轉化為 對應ascii 的地方。結果習慣性的用了 a 1 之類的 或者int a 直接報錯 後來查了查才知道 規則 用的是 ord a 和chr 59 之類 記錄一下吧 挺常用的 python 2.7.8 default,jun 302014,16 08 48 ms...

數字轉字串

數字換字串效率,寫了個 測試了下,發現最快方式是數字後面直接拼接空字串。public class a system.out.println 使用方法轉換用時 system.currenttimemillis s s system.currenttimemillis for double d 0 d ...

數字轉字串

當需要將數字轉換成字元時,採用如下方式 1。var string 1 console.log typeof string number string 1 console.log typeof string string 從效能上來看,將數字轉換成字元時,有如下公式 string tostring n...