728x90
반응형

Import 7

[ Python ] 모듈 직접 실행(모듈이 잘 작동하는지 확인하는 방법)

파일명 : thailand.py class ThailandPackage: def detail(self): print("[태국 패키지 3박 5일] 방콕, 파타야 여행 (야시장 투어) 50만원") # 모듈 직접 실행 # 모듈이 잘 동작하는지 사전에 테스트를 해보아야 한다. if __name__ == "__main__": print("Thailand 모듈을 직접 실행") print("이 문장은 모듈을 직접 실행할 때만 실행돼요") trip_to = ThailandPackage() trip_to.detail() else: print("Thailand 외부에서 모듈 호출") 파일명 : travelPractice.py import travel.thailand trip_to = travel.thailand.Thail..

Python 2021.03.08

[ Python ] __all__ 사용해서 패키지의 모듈을 import 하는 방법.

travel package 의 thailand module class ThailandPackage: def detail(self): print("[태국 패키지 3박 5일] 방콕, 파타야 여행 (야시장 투어) 50만원")travel package 의 vietnam module class VietnamPackage: def detail(self): print("[베트남 패키지 3박 5일] 다낭 효도 여행 60만원")package를 import 하는 파일 # __all__ # from random import * from travel import * # 패키지 안에 포함된 것들 중에서 import 되기 원하는 것들만 공개하고 원하지 않는 것은 비공개 할 수 있다.(__init__) trip_to = vietn..

Python 2021.03.08

[ Python ] 모듈 ( module )

module # 모듈 (module) : 필요한 것들 끼리 부품처럼 잘 만들어진 파일이라고 보면 된다. # 자동차 타이어 마모, 펑크 -> 타이어만 교체 # 자동차 범퍼 고장 -> 범퍼만 교체 # 코드를 부품 교체하듯 부분만 교체하면 유지보수도 쉽고 코드의 재사용성이 수월해진다. # 파이썬에서는 함수 정의, 클래스 들의 파이썬 정의를 담고 있는 파일을 모듈이라고 한다. # 확장자가 .py 이다. # 영화를 볼 수 있는 극장이 있는데, 희한하게 현금만 받는다. # 잔돈을 바꿔주지도 않는다. # 현재 theater_module.py 파일 자체가 모듈이다. # 일반 가격 def price(people): print("{0}명 가격은 {1:,}원 입니다.".format(people, people * 10000)..

Python 2021.03.08

[ react-native ] 상대경로 path 지정

babel에 있는 라이브러리를 모두 yarn으로 추가해준다. babel.config.js 입력 사항 module.exports = { presets: ['module:metro-react-native-babel-preset'], plugins: [ ['@babel/plugin-transform-flow-strip-types'], [ "@babel/plugin-proposal-decorators", { "legacy": true } ], [ "@babel/plugin-proposal-class-properties", { "loose": true } ] ] };metro.config.js /** * Metro configuration for React Native * https:..

IT 유용한 정보 2021.02.03

[ react-native ] 스타일링 방법 2가지, import, module, class 외

View, Text import React, { Component } from 'react'; react라는 module에서 Component class를 import하는 의미. 그 Component를 상속받는 App이라는 클래스를 생성하는 순서 App 클래스 화면을 렌더링하는 함수가 있고(render() 함수) 그 안에 return 되는 것들이 화면을 구성하게 된다. import { View, Text } from 'react-native'; 'react-native'라는 module에서 View, Text 클래스를 import하는 것이다. Button, Image 등 다양한 클래스를 가져와서 사용할 수 있다. Text, Button, Image 등 화면에 출..

IT 유용한 정보 2021.01.17
728x90
반응형
LIST