일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 어도비
- Papervision
- stage3d
- Silverlight
- Microsoft
- 책
- 도서
- 마이크로소프트
- Flex
- 주식
- Genome2D
- framework
- starling
- 워렌 버핏
- Flash
- Papervision3D
- ActionScript
- 물리엔진
- 3.0
- 실버라이트
- adobe
- XAML
- 아폴로
- 플렉스
- 3D
- 액션스크립트
- API
- Air
- 아폴로케이션
- 플래시
- Today
- Total
목록2025/05/03 (4)
주엘리아 블로그
애니메이션 & 학습 컨텐츠 포트폴리오 아폴로케이션 :: Apollocation
Business UI by Zhanna SchonfeldA business-y ui kit I created for fun.Chutzpah User Interface Kit by Morgan Allan KnutsonUse this, and use it widely. License: Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License.Bloom UI Kit by PranavSimple UI KitApple styled UI elements by PranavSome Apple styled UI elements I did for practice. Hope you guys like it ;)Metallic Blue UI KitWa..
http://line25.com/articles/30-inspiring-examples-of-retro-style-website-designsCG InspiredCast Iron Design CompanyLa BubblyVonDutchBitfoundryBarrelhouse FlatTwo Fish Illustration & DesignBrock KenzlerTrailer Park TruckForefathers GroupDuggardFriendly GentsBlind BarberKitchen Sink StudiosTheoryhttp://line25.com/articles/30-inspiring-examples-of-retro-style-website-designs
./com/Mod.py 파일이 있다고 가정했을 때..Mod.pyimport randomclass new: def getRandom(self): return random.random()1. 모듈을 import 하려면 아래와 같이 합니다.import com.Modm = com.Mod.new()print(m.getRandom())2. 그런데 위 빨간색처럼 com.Mod라고 하지 않고 Mod만 쓰고 싶다면?아래처럼 합니다.from com import Modm = Mod.new()print(m.getRandom())3. 폴더내의 모든 모듈을 로드하고 싶어서 아래처럼 쓰면 에러가 납니다.from com import *이를 위해 __init__.py를 모듈 폴더에 생성합니다. 내용은..__all__ = ["Mod"..