python怎麼把字典中的數字轉換為

2021-05-25 19:18:47 字數 6038 閱讀 9052

1樓:匿名使用者

my_dict =

a = int(my_dict['a'])b = int(my_dict['b'])c = int(my_dict['c'])print(a)

print(b)

print(c)求採納

python int()數字轉換問題

2樓:匿名使用者

這個問題的原因是你用的np.zeros(count),它的預設資料型別是float型別的,而且不管你往這個np列表傳入什麼型別的值,它都是自動改為float型別。注意這個float型別可不是原生的浮點型別, 雖然「看」起來差不多, 但如果用type函式的話就能看出來區別了。

有兩種解決方法可以解決你的問題。

list = np.zeros(count) 改為 list = np.zeros(count,dtype=int)。

這樣就不會出現你所說的問題, 但對於你的這段程式用numpy有點大材小用了。 建議你用下面的方法。

list = np.zeros(count) 改為 list = [0 for i in range(count)]

然後第二張圖的錯誤提示正是因為numpy試圖把字串自動轉換為浮點數,但顯然是不可能的。為了避免這個錯誤就必要用我上面的第二個解決方法才行了。

最後,你的**有可優化的空間,太多遍歷和判斷條件了。可能會很長,但可能會對你有一些啟發,如果沒有耐心的話,可以看最後一條就是最終完成的**。

slice函式處理邏輯過於複雜了。 你是想把如361變成[3,6,1]這樣的情況吧。那為何不使用list(str(361))呢,雖然最後的結果裡面的元素是字串型別,但後面直接用int(i)的方式解決了。

這樣的話,count函式都可以省略了。

看到slice函式下面的for遍歷語句,我明白了你的用意,就是為了計算各個位數相加的和,這樣的話,就連slice函式都沒必要了。直接下面**就可以了:

for i in str(n):

sum += int(i)

3.再繼續,發現又是slice和for迴圈,原來是要繼續把sum分開。直接list(str(sum))即可。

4.到最後了,我看到了很多條件判斷,總覺得條件判斷這麼寫,顯得有點羅嗦了點。可以把你這個條件判斷寫一個類似配置檔案的物件,其實就是字典物件。

最終給你總結一下你的**就是下面這樣的:

python 字元與數字如何轉換

3樓: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'

4樓:日time寸

整數字串轉換為對應的整數

int('12')

小數字串轉換為對應小數

float('12.34')

數字轉換為字串

str(123.45)

ascii碼轉換為相應字元

chr(97)

字元轉換為響應ascii碼

ord('a')

5樓:尼克的右手

一、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轉換成的字串

6樓:匿名使用者

整數字串轉換為對應的整數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。

7樓:匿名使用者

#x須為數字,否則把字串型別的字母/漢子/標點符號轉化為int型別毫無意義,會報錯。

x = 1 #x為int型別。

s = str(x) #把x轉換為字串型別,即'x'.

i = int(s) #把字串型別的x轉換為int型別的x。

8樓:藍藍藍

一、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轉換成的字串

9樓:淺雨唯一

#!/usr/bin/python

#-*- coding:utf-8 -*-if __name__ == "__main__":

a = '64'

print 'type(a)=', type(a)print 'a=', a

print

b = int(a)

print 'type(b),', type(b)print 'b=', b

print

c = '40'

print 'type(c),', type(c)print 'c=', c

d = int(c, 16)

print 'type(d),', type(d)print 'd=', d

print

e = '100'

print 'type(e),', type(e)print 'e=', e

f = int(e, 8)

print 'type(f),', type(f)print 'f=', f

print

g = '1000000'

print 'type(g),', type(g)print 'g=', g

h = int(g, 2)

print 'type(h),', type(h)print 'h=', h

10樓:匿名使用者

int(str)

float(str)

str(int)

str(float)

11樓:名字都沒一個

將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怎麼把字串轉換成數字

整數字符 串來轉換為對應源的整數 int 12 小數字bai符串du轉換為對應小數 float 12.34 數字轉換為字串 str 123.45 ascii碼轉換為相應 zhi字元 chr 97 字元轉dao換為響應ascii碼 ord a int 123 123 python 字元與數字如何轉換 ...

python中怎麼將字串轉換為數字

整數字符bai 串轉換為對應的du整數 int 12 小數字zhi符dao串版轉權換為對應小數 float 12.34 數字轉換 為字串 str 123.45 ascii碼轉換為相應字元 chr 97 字元轉換為響應ascii碼 ord a python 字元與數字如何轉換 python中字元與數字...

python怎麼把列表中的元素新增到陣列

py3.5 實現將列表l1與列表l2揀入陣列專array3中import numpy as np l1 1,3,5 列表1 l2 2,4,6 列表2 array3 np.array l1,l2 print array3 輸出屬如下 1 3 5 2 4 6 python如何把數值放到一個陣列裡面 py...