Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
118 views
in Technique[技术] by (71.8m points)

python - How to convert string to decimal in this list of lists?

I'm trying to convert the strings in this list of lists into decimal form:

ask = [['31188.28758860', 2], ['31183.48445986', 0.14258435], ...]

I tried using elem.strip('"') for elem in ask to remove the quote marks but get "AttributeError: 'list' object has no attribute 'strip'" So I assume I am not accessing the nested level of the strings

question from:https://stackoverflow.com/questions/65917096/how-to-convert-string-to-decimal-in-this-list-of-lists

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
[float(elem[0]) for elem in ask]

to just get the first values of your nested list.

OR

[[float(elem[0]), elem[1]] for elem in ask]

to get the same structure than before, but with the strings replaced by floats.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...