강의

멘토링

커뮤니티

Inflearn Community Q&A

python1828's profile image
python1828

asked

Building Real-world Websites with Python by Dr. Nam

Create a member registration page

진자2 with 문 문의

Written on

·

221

1

8분 57초 쯤에 보면 아래와같이 with 문이 나옵니다

with문은 어떻때 사용하는건가?

with문을 써야하는 이유를 알려주시면 감사하겠습니다

{% with ...%}

{% endwith %}
python

Answer 1

1

nambaksa님의 프로필 이미지
nambaksa
Instructor

진자에서 with 문은 변수를 선언하는데 사용됩니다.

{% with my_variable = 1 %}

    {{my_variable}}

{% endwith %}

python1828's profile image
python1828

asked

Ask a question