摘要: # python使用互译无线发送手机短信# 接口类型:互亿无线触发短信接口,支持发送验证码短信、订单通知短信等。# 账户注册:请通过该地址开通账户http://sms.ihuyi.com/register.html# 注意事项:# (1)调试期间,请用默认的模板进行测试,默认模板详见接口文档;# ( 阅读全文
posted @ 2020-02-18 21:33 i勤能补拙 阅读(2470) 评论(0) 推荐(0) 编辑
摘要: print(1 + 2)print("1" + "2")#不同的类型用加法会有不同的解释class Person(object): def __init__(self, num): self.num = num #运算符重载 def __add__(self, other): return Pers 阅读全文
posted @ 2020-02-18 15:31 i勤能补拙 阅读(1333) 评论(0) 推荐(1) 编辑