2015-01-20 10:02:48 +08:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
# -*- encoding: utf-8 -*-
|
|
|
|
|
"""
|
|
|
|
|
Topic: main测试类
|
|
|
|
|
Desc :
|
|
|
|
|
"""
|
2015-01-23 18:28:02 +08:00
|
|
|
import os
|
2015-01-20 10:02:48 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2015-09-21 09:36:33 +08:00
|
|
|
aa = {"1", 2}
|
|
|
|
|
print("aaa='{}','{}'".format(*aa))
|
|
|
|
|
print("a'a'a'".replace("'", ";"))
|
2015-01-20 10:02:48 +08:00
|
|
|
|