파이썬 제어문
변수 변수 선언법 a, b = ('string','arr') (a,b) = 'string, 'arr' [a,b] = ['string', 'arr'] a = b = 'string' a = [1,2] b = a # b는 a가 가리키고 있는 object의 주소값을 가리키고 deep copy가 일어나지는 않습니다. ...
변수 변수 선언법 a, b = ('string','arr') (a,b) = 'string, 'arr' [a,b] = ['string', 'arr'] a = b = 'string' a = [1,2] b = a # b는 a가 가리키고 있는 object의 주소값을 가리키고 deep copy가 일어나지는 않습니다. ...
Python은 interpreter이다. Interpreter란 한 줄 한 줄 바로바로 해석하고 결과를 보여주는 언어이다. Scalar type int, float, bool, None atomic data type Non-scalar type string, tuple, list,...
# yum install gcc openssl-devel bzip2-devel libffi-devel # cd /usr/src # wget https://www.python.org/ftp/python/3.7.3/Python-3.7.3.tgz # tar xzf Python-3.7.3.tgz # cd Python-3.7.3 # ./configure --e...
1. File and Directory Navigation Understanding the system’s structure and finding important configuration files or hidden information is the most fundamental step. find A powerful file search to...
Vim Plugin Manager Installation 아래의 플러그인들을 설치하기 위해서 우선 플러그 매니저를 설치해야한다. curl -fLo ~/.vim/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim ~/.vim...
Customizing MacOS Terminal 1. Transforming Terminal with Oh My Zsh What is Oh My Zsh? Oh My Zsh is an open-source framework that makes your terminal both vibrant and powerful. By using the Zsh sh...
Setting Up Mac Mini and MacBook Air Environment with Automator Recently, I decided to purchase a Mac Mini after experiencing performance issues with my MacBook Air. However, one major downside of ...
CentOS7 기준 설치 방법 매우 간단하다. 아래 명령어 실행. $ yum install emacs Kali Linux에서 설치가 안 될 시 /etc/apt/sources.list 파일에 아래 코드를 추가한다. deb http://http.kali.org/kali kali-rolling main contri...
putty를 설치하고 기본으로 쓰면 파란색 글짜때문에 눈이 아프다… 따라서 putty 설치 후 다음과 같은 설정을 하면 편하게 쓸 수 있다. 1. Window 명령어를 실행하면 보여줄 수 있는 라인 수는 넉넉히 1000으로 설정. 2. Appearance 폰트 사이즈는 해상도에 따라서 10, 15로 설정. 3. Beha...
Vim Shortcuts Complete Guide: Secrets of Efficient Text Editing Navigation Basic Movement ^: Move to the first non-blank character of the line 0: Move to the absolute beginning of the line (...