“Extract Int z Python String Python” Kod odpowiedzi

Jak usunąć liczbę całkowitą ze sznurka w Pythonie

>>> s = '12abcd405'
>>> result = ''.join([i for i in s if not i.isdigit()])
>>> result
'abcd'
Gorgeous Gerbil

Wyodrębnij liczby z Python String

# Python program to extract digits from string

# take string
string = "kn4ow5pro8am2"

# print original string
print("The original string:", string)

# using join() + filter() + isdigit()
num = ''.join(filter(lambda i: i.isdigit(), string))

# print extract digits
print("Extract Digits:", num)
Mighty Unicorn

Python Get Int z String

>>> import re
>>> string1 = "498results should get"
>>> int(re.search(r'\d+', string1).group())
498
Nice Newt

Python wyodrębnia wszystkie liczby z ciągów

>>> str = "h3110 23 cat 444.4 rabbit 11 2 dog"
>>> [int(s) for s in str.split() if s.isdigit()]
[23, 11, 2]
Comfortable Cardinal

Jak wyodrębnić liczby całkowite z String Python

>>> txt = "h3110 23 cat 444.4 rabbit 11 2 dog"
>>> [int(s) for s in txt.split() if s.isdigit()]
[23, 11, 2]
Alert Armadillo

Extract Int z Python String Python

df['B'].str.extract('(\d+)').astype(int)
Cooperative Civet

Odpowiedzi podobne do “Extract Int z Python String Python”

Pytania podobne do “Extract Int z Python String Python”

Więcej pokrewnych odpowiedzi na “Extract Int z Python String Python” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu