python eval 함수 의 묘 용 을 상세히 해석 하 다.

3759 단어 pythoneval
python eval 함수 기능:문자열 str 를 유효한 표현 식 으로 값 을 구하 고 계산 결 과 를 되 돌려 줍 니 다.
함수 정의:

eval(expression, globals=None, locals=None)
문자열 str 를 올 바른 표현 식 으로 값 을 구하 고 계산 결 과 를 되 돌려 줍 니 다.globals 와 locals 인 자 는 선택 할 수 있 습 니 다.globals 인 자 를 제공 하면 dictionary 형식 이 어야 합 니 다.locals 인 자 를 제공 하면 임의의 map 대상 이 될 수 있 습 니 다.
python 의 전역 이름 공간 은 globals()라 는 dict 대상 에 저 장 됩 니 다.부분 이름 공간 은 locals()라 는 dict 대상 에 저 장 됩 니 다.이 함수 의 모든 변수 이름과 변 수 를 print(locals()로 볼 수 있 습 니 다.
Python 버 전 호 환:
  • Python2.7
  • Python3.x
  • eval()주요 역할:
    1)컴 파일 언어 에서 동적 으로 코드 를 만들어 야 한다.기본적으로 불가능 하지만 동적 언어 는 가능 하 다.이 는 소프트웨어 가 서버 에 배치 되 었 음 을 의미 하지만 아주 적은 변경 만 하면 이 부분의 코드 를 직접 수정 할 수 밖 에 없다.전체 소프트웨어 를 다시 불 러 오지 않 아 도 된다.
    2)machin learning 에서 사용자 가 이 소프트웨어 를 사용 하 는 빈도 와 방식 에 따라 코드 를 동적 으로 수정 하여 사용자 의 변화 에 적응 할 수 있다.
    영문 설명:
    The arguments are a string and optional globals and locals. If provided, globals must be a dictionary. If provided, locals can be any mapping object.
    The expression argument is parsed and evaluated as a Python expression (technically speaking, a condition list) using the globals and locals dictionaries as global and local namespace. If the globals dictionary is present and lacks ‘__builtins__', the current globals are copied into globals before expression is parsed. This means that expression normally has full access to the standard builtins module and restricted environments are propagated. If the locals dictionary is omitted it defaults to the globals dictionary. If both dictionaries are omitted, the expression is executed in the environment where eval() is called. The return value is the result of the evaluated expression. Syntax errors are reported as exceptions. Example:
    예:
    
    a=1
    g={'a':20}
    eval("a+1",g)
    결과:
    1
    예 2,globals,locals 테스트
    
    x = 1
    y = 1
    num1 = eval("x+y")
    print (num1)
    def g(): 
     x = 2 
     y = 2 
     num3 = eval("x+y") 
     print (num3)  
     num2 = eval("x+y",globals()) 
     #num2 = eval("x+y",globals(),locals()) 
     print (num2)
      
    g()
    num 1 의 값 은 2 입 니 다.num 3 의 값 도 잘 이해 합 니 다.4 입 니 다.num2 의 값 은?globals()인 자 를 제 공 했 기 때문에 먼저 전체적인 x 와 y 값,즉 모두 1 이 어야 합 니 다.그러면 num 2 의 값 도 2 입 니 다.주석 이 떨 어 지면 다음 문장 을 실행 하 시 겠 습 니까?3)점 에서 알 수 있 듯 이 결 과 는 4 이다.
    인 스 턴 스 보기:
    list,tuple,dict 와 string 을 서로 바 꿀 수 있 습 니 다.
    
    #################################################
            
    >>>a = "[[1,2], [3,4], [5,6], [7,8], [9,0]]"
    >>>type(a)
    <type 'str'>
    >>> b = eval(a)
    >>> print b
    [[1, 2], [3, 4], [5, 6], [7, 8], [9, 0]]
    >>> type(b)
    <type 'list'>
    #################################################
            
    >>> a = "{1: 'a', 2: 'b'}"
    >>> type(a)
    <type 'str'>
    >>> b = eval(a)
    >>> print b
    {1: 'a', 2: 'b'}
    >>> type(b)
    <type 'dict'>
    #################################################
            
    >>> a = "([1,2], [3,4], [5,6], [7,8], (9,0))"
    >>> type(a)
    <type 'str'>
    >>> b = eval(a)
    >>> print b
    ([1, 2], [3, 4], [5, 6], [7, 8], (9, 0))
    >>> type(b)
    <type 'tuple'>
    안전 문제:
    eval 의 특 형 으로 해 킹 에 이 용 돼 안전 에 문제 가 생 길 가능성 이 높다.
    어떻게 안전 문 제 를 피 합 니까?
    1.자체 검사 함수 쓰기;
    2,ast.literal 사용대신
    이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

    좋은 웹페이지 즐겨찾기