$ git clone https://github.com/needleworm/bhban_RPA
Git Bash Here
python sample_generator.py
pip install ipython
#ipython은 파이썬을 쉽게 사용할 수 있도록 도와주는 도구
#파이썬 코드를 가독성 있게 색이 입혀지고 사용하기 쉽도록 도와주는 도구
----------------------------------------
#ipython 설치여부 확인
pip show ipython
#ipython 실행
ipython
#종료
exit()
file = open("test.txt", 'w') #RUN 바탕화면에 저장
file = open("test.txt", 'w')
# test.txt라는 파일을 '쓰기'모드로 하나 생성해줘
file.write("hello, world!")
# hello, world라고 문자를 기록해줘
file.close()
# 저장하고 종료해줘