7 lines
103 B
Python
7 lines
103 B
Python
|
|
#!/usr/bin/env python
|
||
|
|
# -*- coding: utf-8 -*-
|
||
|
|
|
||
|
|
s = "12345678"
|
||
|
|
s = "0" + s # by concatenation
|
||
|
|
print(s)
|