사용자 도구

사이트 도구


python

Python

2021년 부터는 Python3가 main stream으로 자리를 잡아가고 있다.

Get last result in the interactive python shell

In [1]: 1+2
Out[1]: 3
 
In [2]: _
Out[2]: 3

f-string

test = 4
print(f'{test=}')
 
test = 4 
python.txt · 마지막으로 수정됨: 저자 ican