<!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>
CLI - Command Line Interface
GUI - Graphical User Interface
https://www.python.org
파이썬 공식 홈페이지에서 파이썬을 다운로드 받는다.
현재 버전은 3.10.4를 다운받았다.
설치가 잘 됐으면 VSCode 터미널에서 'python3'을 입력하면 파이썬을 사용할 수 있다.
# 1program.py
print(1)
print(2)
print(3)
프로그램 작성을 완료한 다음 cmd에서 실행시켜 본다.
python3 1program.py
<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>
print('number')
print(1)
print(1.2)
print(1+2)
print(2-1)
print(2*2)
print(6/2)
print(pow(3,2))
<script>
console.log(Math.random());
</script>
import random
print(random.random())
<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>
# 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}님')
<h1>Input</h1>
<script>
price = prompt('가격?');
rate = 0.1;
alert(price * rate);
</script>
price = int(input('가격? : '))
rate = 0.1
print(price * rate)
PyPI (Python Package Index)
: 파이썬으로 만들어진 프로그램들을 조회할 수 있는 서비스
PIP
: PyPI 패키지를 간편하게 설치할 수 있게 도와주는 소프트웨어
pip3 install pandas
import pandas
house = pandas.read_csv('boston.csv')
print(house)
print(house.head(1))
print(house.describe())
terminal을 사용하다가 'Run Python File'을 실행했는데 SyntaxError가 발생했다.
한줄 실행 모드가 실행되어서 그렇다고 함.
오류가 나는 경우 VSCode에 있는 휴지통 아이콘을 눌러서 삭제하고 다시 켠다.
javascript으로 먼저 짜본 코드를 파이썬으로 다시 짜보니까 더 이해가 쉬웠다.
javascript에서는 Math.random()이 그냥 동작했지만,
python에서는 import가 필요하듯이 언어마다 약간의 차이는 있었다.
비슷한 언어를 매칭시켜서 이해하는 게 두 언어에 대한 이해도를 높일 수 있어서 좋았다.