# def 키워드는 파이썬에게 지금부터 함수를 정의한다고 알림. # 함수 안쪽에 들여쓰기 한부분은 함수 바디 # 함수 바디에 따옴표 3개로 둘러싼부분은 독스트링 이라고 불리는 주석. def greeter_user(username): """독 스트링 - 간단한 환영 인사""" print("Hello, " + username.title() + "!") # 매개변수 greeter_user('jbc') # greeter_user() 함수는 변수 username을 요구하도록 정의됨. # 여기서 username은 매개변수라고 한다. # 함수를 호출할 때 전달하는 값도 매개변수라고 함. # 키워드 매개변수 # 기본값 - 매개변수의 기본값 정할 수 있다. 함수 호출시 매개변수를 넘기면 파이썬은 그값을 사용한다. def..
# input() 함수는 프로그램을 잠시 중단하고 사용자가 텍스트를 입력할 때까지 기다린다 # input() 함수는 매개변수를 하나만 받는다 # message = input("Tell me something and I will repeat it back to you: ") # print(message) # name = input("please enter your name: ") # print("Hello "+ name + "!") prompt = "If you tell us who you are we can personalize the message you see. " prompt += "\nWhat is your first name? " # name = input(prompt) # age = input..
# 딕셔너리에는 거의 무한한 정보를 저장할 수 있다. # 단순한 딕셔너리 alien_0 = {'color': 'green', 'points': 5} print(alien_0['color']) print(alien_0['points']) # 새 키-값 쌍 추가하기 alien_0['x_position'] = 0 alien_0['y_positiion'] = 25 print(alien_0) # 딕셔너리 값 수정하기 alien_0['color'] = 'yellow' print('The alien is now '+alien_0['color']) # 키 - 값 쌍 제거하기 del alien_0['points'] print(alien_0) # 키 - 값 쌍 전체에 루프 실행하기 user_0 = { 'username':..
cars = ['audi', 'bmw', 'subaru', 'toyota'] for car in cars: if car == 'bmw': print(car.upper()) else: print(car.title()) # 동일성 체크 car = 'bmw' print(car == 'bmw') car2 = 'audi' print(car2 == 'bmw') # 일치하는지 체크할때 대소문자 무시하기 car_name1 = 'Audi' print(car_name1 == 'audi') print(car_name1.lower() == 'audi') # 불일치 체크 requested_topping = 'mushrooms' if requested_topping != 'anchovies': print("Hold the anc..
# 숫자 리스트 만들기 - range( 시작숫자, 끝숫자 )에서 끝숫자는 포함되지 않는다 for value in range(1, 5): print(value) # range()로 숫자 리스트 만들기 numbers = list(range(1, 6)) print(numbers) # 1부터 10까지 짝수만 호출 - 값 2에서 시작해 그 값에 2를 더하는 구조. even_numbers = list(range(2, 11, 2)) print(even_numbers) # 1부터 20까지 홀수만 호출 - 값 1에서 시작해 그 값에 2를 더하는 구조. odd_numbers = list(range(1, 21, 2)) print(odd_numbers) # 1부터 10까지 제곱수 리스트 squares = [] for valu..
member_group = ['Rachel', 'Monica', 'Phoebe', 'Ola', 'You'] # 항목추가 member_group.append('ducati') print(member_group) # 항목 삽입 member_group.insert(0, 'honda') print(member_group) # del 문으로 제거 del member_group[1] print(member_group) # 축출 ele_ducati = member_group.pop() print(ele_ducati) # 축출 후 바로 제거 del_ele_you = member_group.pop(len(member_group)-1) print(del_ele_you) # 항목을 리스트에서 제거하고 다시 쓸 일이 없다면 ..
message = "hello python world" message2 = "Hello python" first_name = " ada" last_name = "lovelace " full_name = first_name+"__"+last_name # 타이틀 출력 print(message.title()) # 대문자화 print(message.upper()) # 소문자화 print(message2.lower()) # 탭 영역 추가 print("Hello,"+full_name.title()+" \t!") # 우측 공백제거 print(last_name.rstrip()+first_name) # 좌측 공백제거 print(first_name.lstrip()) # 모든 공백제거 print((first_name+las..
파이썬 study 1 드뎌 묵혀왔던 python study를 시작~ https://www.python.org/downloads/ -->여기서 다운받는다 일단 최신 버전 3.5로 고고 실습해볼 IDE 선택~ 나는 pycharm 으로 https://www.jetbrains.com/pycharm/ 다운로드 페이지로 이동하면 아래와 같이 다운 옵션이 있는데 나는 커뮤니티 버전으로 다운받고 실행했다. 무료니까 ㅋㅋ PyCharm을 실행해서 하단에 터미널을 열고 python 을 입력하면 아래와 같이 버전 및 어쩌고 나온다 bongui-MacBook-Pro:$ pythonPython 2.7.10 (default, Oct 23 2015, 18:05:06) [GCC 4.2.1 Compatible Apple LLVM 7...
- Total
- Today
- Yesterday
- vue-router
- IntrinsicElements
- icon font
- RefreshToken
- svg icon font
- 반복문
- git checkout -b
- Intrinsic
- 코도바
- CSS
- svg모션
- Aptana
- 아이콘 폰트 만들기
- Angular
- git
- react-router-dom
- 리프래시토큰
- React.StrictMode
- 내장요소
- Vue3
- interceptors
- for of 구문
- 태그
- JsDoc
- 자바스크립트
- svg 폰트
- react
- 앵귤러
- cordova
- anime.js
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |