[4일차] 파이썬 기본문법1

이나겸·2022년 3월 28일
0
post-thumbnail

0. 복습

  1. h1태그, a태그, ol-li태그, input태그 사용해서 홈페이지 만들기
  2. input type을 button으로 만들어서 day/night 모드 버튼 만들기
<!DOCTYPE html>
<html lang="ko">
<head>
    <title>Document</title>
    <style>
        h1 {
            border-bottom: 10px solid salmon;
        }
        a {
            text-decoration: none;
        }
    </style>
</head>

<body>
    <input type="button" value="night" onclick="
    let aTagAll = document.querySelectorAll('a');
    if (this.value == 'night'){
        this.value = 'day';
        document.querySelector('body').style.color='white';
        document.querySelector('body').style.backgroundColor='black';
        for (let i=0; i<aTagAll.length; i++){
            aTagAll[i].style.color='white';
        }
    } else {
        this.value = 'night';
        document.querySelector('body').style.color='black';
        document.querySelector('body').style.backgroundColor='white';
        for (let i=0; i<aTagAll.length; i++){
            aTagAll[i].style.color='black';
        }
    }">
    <h1><a href="index.html">website</a></h1>
    <ol>
        <li><a href="1.html">html</a></li>
        <li><a href="2.html">css</a></li>
        <li><a href="3.html">js</a></li>
    </ol>
    <h2>Welcome</h2>
    Lorem ipsum dolor sit amet consectetur adipisicing elit. Aspernatur, asperiores.
</body>
</html>

1. 학습내용

CLI - Command Line Interface
GUI - Graphical User Interface

https://www.python.org
파이썬 공식 홈페이지에서 파이썬을 다운로드 받는다.
현재 버전은 3.10.4를 다운받았다.

설치가 잘 됐으면 VSCode 터미널에서 'python3'을 입력하면 파이썬을 사용할 수 있다.

사용이 완료되면 exit()를 입력해서 빠져나올 수 있다.

콘솔 출력

# 1program.py

print(1)
print(2)
print(3)

프로그램 작성을 완료한 다음 cmd에서 실행시켜 본다.

python3 1program.py

데이터 타입 출력

  • javascript에서 datatype
<h1>Number</h1>
<script>
    console.log('number');
    console.log(1);
    console.log(1.2);
    console.log(1+2);
    console.log(2-1);
    console.log(2*2);
    console.log(6/2);
    console.log(Math.pow(3,2))
	console.log(Math.random())
</script>
  • python에서 datatype
print('number')
print(1)
print(1.2)
print(1+2)
print(2-1)
print(2*2)
print(6/2)
print(pow(3,2))

  • javascript에서 random 사용
<script>
	console.log(Math.random());
</script>
  • python에서 random 사용
    import random을 해야 random()을 사용할 수 있다.
import random
print(random.random())

  • javascript에서 String
<h1>String</h1>
<script>
	console.log('Hello');
    console.log("Hello");
    console.log(`Hello
    World`);
    console.log('Hello'.length)
    console.log('hell world'.replace('hell', 'hello'))
</script>
  • python에서 String
# String
print('hello')
print("hello")
print('''Hello
world''')
print(len('Hello'))
print('hell world'.replace('hell','hello'))
name = '이나겸'
print('안녕하세요. '+name+'님, ... '+name+' ... 안녕히계세요. '+name+'님')
# f포맷스트링
print(f'안녕하세요. {name}님, ... {name} ... 안녕히계세요. {name}님')

  • javascript에서 input
<h1>Input</h1>
<script>
	price = prompt('가격?');
    rate = 0.1;
    alert(price * rate);
</script>
  • python에서 input
price = int(input('가격? : '))
rate = 0.1
print(price * rate)

pandas 활용하기

PyPI (Python Package Index)
: 파이썬으로 만들어진 프로그램들을 조회할 수 있는 서비스
PIP
: PyPI 패키지를 간편하게 설치할 수 있게 도와주는 소프트웨어

  • Pandas 설치하기
    VSCode terminal에서 아래의 명령을 입력한다.
pip3 install pandas
import pandas

house = pandas.read_csv('boston.csv')
print(house)
print(house.head(1))
print(house.describe())

2. 중요내용

오류

terminal을 사용하다가 'Run Python File'을 실행했는데 SyntaxError가 발생했다.
한줄 실행 모드가 실행되어서 그렇다고 함.
오류가 나는 경우 VSCode에 있는 휴지통 아이콘을 눌러서 삭제하고 다시 켠다.


3. 학습소감

javascript으로 먼저 짜본 코드를 파이썬으로 다시 짜보니까 더 이해가 쉬웠다.
javascript에서는 Math.random()이 그냥 동작했지만,
python에서는 import가 필요하듯이 언어마다 약간의 차이는 있었다.
비슷한 언어를 매칭시켜서 이해하는 게 두 언어에 대한 이해도를 높일 수 있어서 좋았다.

0개의 댓글

관련 채용 정보