출처http://kka7.tistory.com/8 함수 정의와 호출 기본 형식func greetAgain(person: String) -> String { return "Hello again, " + person + "!"} print(greetAgain(person: "Anna")) 파라미터 없는 함수func sayHelloWorld() -> String { return "hello, world"} print(sayHelloWorld()) 여러개의 파라미터를 가진 함수 func greet(person: String, alreadyGreeted: Bool) -> String { if alreadyGreeted { return greetAgain(person: person) } else { return g..
Function선언 및 사용함수를 정의할 때는 def function(parameter):형식으로 사용한다.def printTest(): print('test') printTest() 파라미터가 있을경우는 아래와 같이 처리한다.def changeToWon(dollar): print(dollar * 1147.50) changeToWon(1) python 은 return 형을 지정해줄 필요가 없다.def changeToWon(dollar): won = dollar * 1147.50 print(won) return won won = changeToWon(1) parameter 를 전달하지 않았을 때 default Value 도 지정해줄 수 있다. def changeToWon(dollar, currency=11..
- Total
- Today
- Yesterday
- HTTP
- NSManagedObject
- Swift3
- coredata
- set
- Swift
- CIImage
- Swift 3.0
- docker
- delegate
- optional
- EffectiveObjectiveC
- Swift 3
- applicationWillResignActive
- RunLoop
- 꺼내먹어요
- Block
- NSManagedObjectContext
- Arc
- 읽기 좋은 코드가 좋은 코드다
- CGImage
- Swfit
- workerThread
- dictionary
- AWS
- ios
- NSManagedObjectModel
- string
- UIView
- thread
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |