Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 117 Bytes

README.md

File metadata and controls

10 lines (7 loc) · 117 Bytes

About_CodingTest

Python Tips

String

print('%02d' %(3)) # 03
print('{:02d}'.format(3)) # 03