제로베이스 데이터 취업 스쿨 1주차 스터디노트 1호
import math
import queue # 리스트를 만들고 "이건 큐야!"가 아니라 진짜 큐를 받아온다니!
provided = input("입력하세요: ")
>> 입력하세요: {깜빡이는 커서}
pi = 3.1415926535
upper_line = '{:-^20}'.format("Pi value")
str1 = '값은 %f이다.' % pi
str2 = f'소수점 자리수 2자리로 변경하면 {pi:.2f}이다. (참고로 반올림 됨)'
str3 = f'쉼표 구분도 가능: {pi * 10000:,.0f}'
bottom_line = '-' * 20
for s_item in upper_line, str1, str2, str3, bottom_line:
print(s_item)
num = int(input("숫자 입력: "))
is_even = num % 2 == 0
if is_even:
print("짝수입니다.")
else:
print("홀수입니다.")
// 비슷한 코드를 javascript로 구현
const num = 33
const isEven = num % 2 === 0
if (isEven) {
console.log("짝수입니다.")
} else {
console.log("홀수입니다.") // indent 없이도 정상 실행, 하는 이유는 가독성을 위해서
}
value = input("숫자 입력: ")
for num in range(10):
if num == value:
print("10 이하에서 값을 찾았습니다.")
break
else:
print("10 이하의 수가 아닙니다.")
str1 = "python"
str2 = "그는"
str3 = "신이야!"
sentence = str1, str2, str3
type(sentence) # tuple
for str_item in str1, str2, str3: # 정상작동함
print(str_item)