“Sprawdź, czy ciąg to Python” Kod odpowiedzi

Jeśli typ to string Python

isinstance(s, str)
Fair Fly

Sprawdź, czy ciąg to Python

# Method that checks if a string has python keywords, function calls or assignments
def pythonCheck(text):
    if re.search(r'^(for|while|if|def|try|except|else|elif|with|continue|break|#|from|import|return|pass|async|await|yield|raise|del|class|global|finally|assert)', text):
        return True

    # if it starts with a '(' then it's not python
    if re.search(r'^\(', text):
        return False

     # if it starts or ends with a '=' then it's not python
    if re.search(r'^=|=$', text):
        return False

    if re.search(r'\(|=', text):
        return True

    return False
Zé Pedro Mota

Odpowiedzi podobne do “Sprawdź, czy ciąg to Python”

Pytania podobne do “Sprawdź, czy ciąg to Python”

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

Przeglądaj inne języki kodu