swift from 1 to 01 code example
Example: swift from 1 to 01
import Foundation
for myInt in 1 ... 3 {
print(String(format: "%02d", myInt))
}
import Foundation
for myInt in 1 ... 3 {
print(String(format: "%02d", myInt))
}