1樓:珠光寶氣玲瓏鎖
整數字串轉換
來為對應自的整數 int('12') 小數字串轉換為對應小數 float('12.34') 數字轉換為字串 str(123.45) ascii碼轉換為相應字元 chr(97) 字元轉換為響應ascii碼 ord('a')
python 字元與數字如何轉換
2樓:zer0小雪
python中字元與數字相互轉換用chr()即可。
python中的字元數字之間的轉換函式
int(x [,base ]) 將x轉換為乙個整數
long(x [,base ]) 將x轉換為乙個長整數
float(x ) 將x轉換到乙個浮點數
***plex(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 ) 將乙個整數轉換為乙個八進位制字串
chr(65)='a'
ord('a')=65
int('2')=2;
str(2)='2'
3樓:日time寸
整數字串轉換為對應的整數
int('12')
小數字串轉換為對應小數
float('12.34')
數字轉換為字串
str(123.45)
ascii碼轉換為相應字元
chr(97)
字元轉換為響應ascii碼
ord('a')
4樓:尼克的右手
一、python中字串轉換成數字(1)import string
t='555'
ts=string.atoi(tt)
ts即為tt轉換成的數字
轉換為浮點數 string.atof(tt)(2)直接int
int(tt)即可。
二、數字轉換成字串
tt=322
tem='%d' %tt
tem即為tt轉換成的字串
5樓:匿名使用者
整數字串轉換為對應的整數int('12')。
使用格式化字串:
tt=322
tem='%d' %tt
tem即為tt轉換成的字串
小數字串轉換為對應小數float('12.34')。
double num1 = 0.0;
string ** = "12.34";
num1 = double.valueof(**.tostring());
數字轉換為字串str(123.45)。
(123.45).to_bytes(4, 'big')
b'\x13\x9b\xe5\x87'
ascii碼轉換為相應字元chr(97)。
字元轉換為響應ascii碼ord('a')。
下面是python中對這幾個方法的簡單說明:ord(...) ord(c) -> integer return the integer ordinal of a one-character string。
chr(...)
chr(i) -> character
return a string of one character with ordinal i; 0 <= i < 256。
repr(...)
repr(object) -> string return the canonical string representation of the object。
for most object types, eval(repr(object)) == object。
unichr(...)
unichr(i) -> unicode character return a unicode string of one character with ordinal i; 0 <= i <= 0x10ffff。
6樓:匿名使用者
#x須為數字,否則把字串型別的字母/漢子/標點符號轉化為int型別毫無意義,會報錯。
x = 1 #x為int型別。
s = str(x) #把x轉換為字串型別,即'x'.
i = int(s) #把字串型別的x轉換為int型別的x。
7樓:藍藍藍
一、python中字串轉換成數字
1、類中進行匯入:import string ,str='555',num=string.atoi(str),num即為str轉換成的數字轉換為浮點數:
string.atof(str)
2、直接intint(str)即可。
二、數字轉換成字串
num=322,str='%d'%num,str即為num轉換成的字串
8樓:淺雨唯一
#!/usr/bin/python
#-*- coding:utf-8 -*-if __name__ == "__main__":
a = '64'
print 'type(a)=', type(a)print 'a=', a
b = int(a)
print 'type(b),', type(b)print 'b=', b
c = '40'
print 'type(c),', type(c)print 'c=', c
d = int(c, 16)
print 'type(d),', type(d)print 'd=', d
e = '100'
print 'type(e),', type(e)print 'e=', e
f = int(e, 8)
print 'type(f),', type(f)print 'f=', f
g = '1000000'
print 'type(g),', type(g)print 'g=', g
h = int(g, 2)
print 'type(h),', type(h)print 'h=', h
9樓:匿名使用者
int(str)
float(str)
str(int)
str(float)
10樓:名字都沒乙個
將input中的字串轉換為數字:
首先我們知道inpu輸入的內容為字元,如果輸入為『』數字『』要轉換為python中的數字,則要分為整數數值,或小數點數值,可用以下方法:
a=input('請輸入乙個數字')
try:
n=int(a)
except:
n=float(a)
另外如果要轉換為其他型別,可以在後面再加except:
int(x [,base ]) 將x轉換為乙個整數
long(x [,base ]) 將x轉換為乙個長整數
float(x ) 將x轉換到乙個浮點數
***plex(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 ) 將乙個整數轉換為乙個八進位制字串
ord: 將ascii字串轉化為ascii值
python的數字轉化為字串怎麼弄 20
11樓:匿名使用者
檢查一下你之前是不是將str賦值為字串了,str本來是乙個函式的,你如果賦值了,在這裡就無法呼叫,這裡就變成了將乙個字串物件當作函式來用了。
就像下面:
>>> '10'+str(4)
'104'
>>> str='hello'
>>> '10'+str(4)
traceback (most recent call last):
file "", line 1, in
'10'+str(4)
typeerror: 'str' object is not callable
>>>
12樓:匿名使用者
str是不是在前文中定義過?所以衝突了?
13樓:匿名使用者
#python 2.7.3
>>> "10"+str(4)
'104'
>>>
怎麼把十六進位制的數字轉換為字串
不知道你要什麼語言的,這是c 十六進位制轉中文 從16進製制轉換成漢字 編碼,如 utf 8 gb2312 public static string unhex string hex,string charset 需要將 hex 轉換成 byte 陣列。byte bytes new byte hex...
生日轉換為,生日轉換為八字
公曆 1994年 6月 3日 16點 農曆 甲戌年 狗 四月 廿四 申時 八字 男命 甲戌 己巳 庚申 甲申 怎麼把生日轉換成八字 四柱八字排立 四柱以指一人出生的年 月 日 時。四柱排立是指找出乙個人的生辰八字。主要分四步進行。排年柱年柱,即人出生的年份用干支來表示。注意上一年和下一年的分界線是以...
把Lotus Notes郵件轉換為Outlook格式哪個工具好
用outlook的郵件接收功能把lotus伺服器上的郵件接收下來不就可以了,配置好outlook的pop3位址就可以了,domino伺服器是支援pop3協議的。如何將郵件從 lotus notes 遷移到 outlook 中 如何把foxmail資料檔案轉成outlook pst檔案?如何把lotu...