变量重灾区
一.变量及命名规范
1.1啥是变量?
顾名思义,不断变化的量即变量。举个栗子:a = 0. a即变量,理由:在a赋值为0之后,可以重新进行赋值 a = 1 a=2 a=3.etc
1.2变量的逆鳞:
变量有什么不可触及的伤疤呢?它不能以数字,字母,下划线以外的字符命名(华夏文明源远流长,中文居然都可以支持变量名了,大吃一斤0000)
第二,不能以python自带关键词为名(占山为王,是绝对不被允许滴),举个栗子:for while.etc,
最好不要以可能会出现冲突的变量名为变量名(怎么那么绕口) 比如函数名 sum().etc
1.3 变量的一般格式:
比如一件衣服的价值:value_of_cloth 或者 valueOfCloth ,单词之间要以下标或者大写区分,同时要赋变量以意义
今天的内容很少0.0滑过飘过不要错过呀灭!
Tip:今天分享一个有点儿小意思的代码0.0可以实现微信的自动回复哦,虽然without intelligence(没有拼错对吧!!)
import itchat # import time #回复 @itchat.msg_register(itchat.content.PICTURE) def text_reply(msg): print(msg) return ‘I received a %s‘%msg @itchat.msg_register(itchat.content.TEXT) def text_reply(msg): print(msg) #return msg @itchat.msg_register(itchat.content.TEXT) def text_reply(msg): if msg.text ==‘你好‘: itchat.send(‘你好,打扰了,家里煤气刚烧起来,我回去拍个照‘) else: itchat.send(msg.text)#机器人式回复 @itchat.msg_register(itchat.content.SHARING) def text_reply(msg): print(msg) itchat.auto_login(hotReload=True) users=itchat.search_friends("不甘平庸的朋友哇") userName= users[0][‘UserName‘] print(userName) itchat.run()
原文地址:https://www.cnblogs.com/bokemingcheng/p/9535826.html
时间: 2024-10-21 06:24:01