강의

멘토링

로드맵

Inflearn Community Q&A

yesicakang4640's profile image
yesicakang4640

asked

Getting Started with Programming: Introduction to Python (Inflearn Original)

Python Variables (2-2)

한줄씩 출력되는데, 한꺼번에 출력되는 방법이 궁금합니다..

Written on

·

377

0

 extensions에서 이것저것 깔았는데,

 

-bracket pair colorizer2

-autoDocstring -Python Docstring Generator

-Jupyter

-Jupyter Cell Tags

-Jupyter Keymap

-Jupyter Notebook Renderers

-Jupyter Slide Show

-Material Icon Theme

-Path Autocomplete

-Pylance

-Python

-Python Indent

-Python Type Hint

 

이렇게 깔려있습니다.. 혹시 어떤 이유로 갑자기 한줄씩 출력되는지 알 수 있을까요?

 

'#같은 오브젝트 참조'에서 m과 n에 800이라는 같은 값을 써도 자꾸만 다른 id 값으로 나와서요..

python

Answer 1

1

niceman님의 프로필 이미지
niceman
Instructor

네 안녕하세요.

우선 한 라인 실행되는건 f10 단축키로 하는 건데 전체 라인이 실행 되는건 메뉴에서

직접 실행해 보세요.

아래 단축키로도 실행해보시구요!

https://computer-science-student.tistory.com/688

익스텐션은 잘 설치하셨습니다!!

또한, 같은 오브젝트 값이 나올 수가 있어요!

한 번에 실행되지 못하고 중간에 종료가 되고 이어서 실행되는 경우 새로운 오브젝트를 할당받는

케이스가 있어요!

yesicakang4640님의 프로필 이미지
yesicakang4640
Questioner

Ctrl + F5랑 Shift + F5는 뭐가 다른건가요?

실행되는건 둘 다 같은건가요?

yesicakang4640's profile image
yesicakang4640

asked

Ask a question