• 博客园logo
  • 会员
  • 周边
  • 新闻
  • 博问
  • 闪存
  • 众包
  • 赞助商
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
 






15823420163

 
 

Powered by 博客园
博客园 | 首页 | 新随笔 | 联系 | 订阅 订阅 | 管理
上一页 1 2 3

2019年12月31日

Day6: Anonymous and inner functions
摘要: """ #Anonymous functions def cal(x): return x+1 res = cal(10) print(res) func = lambda x : x+1 print(func(10)) # fun = x:x+'_sb' func = lambda x,y,z: 阅读全文
posted @ 2019-12-31 14:30 Zxver-L 阅读(215) 评论(0) 推荐(0)
 

2019年12月3日

Day5:Variable and recursive function
摘要: """ NAME = 'alex' # global variable be capital def change_name(): global name # if no declaring the global name can also change the clglobal variable 阅读全文
posted @ 2019-12-03 00:13 Zxver-L 阅读(192) 评论(0) 推荐(0)
 

2019年11月30日

Day4:the basic use of Set,%,Format and function
摘要: #****Summary of data type and variable***** """ 1: Can be changed or not: can :list and dict :the same ID no :string ,int and tuple: The different ID 阅读全文
posted @ 2019-11-30 22:42 Zxver-L 阅读(133) 评论(0) 推荐(0)
 

2019年11月28日

The basic sentence of list;triple;dictionary
摘要: ********************************Part1:list******************************* #############deep gray magic############# """ # v=[1,2,3,'age',[1,2,3,['df', 阅读全文
posted @ 2019-11-28 19:43 Zxver-L 阅读(112) 评论(0) 推荐(0)
 

2019年11月26日

Day2:The commonly used sentence of string and number
摘要: # ************One:Number*********** a="123" print(type(a),a) b=int(a) print(type(b),b) # Transfer the string to number # num='a' #v=int(num,base=16) # 阅读全文
posted @ 2019-11-26 16:24 Zxver-L 阅读(169) 评论(0) 推荐(0)
 

2019年11月24日

Day1:The basic of Python
摘要: 恢复内容开始 恢复内容开始 一、The development of Python 1、Two types of program: Type 1:Python,Java,PHP,C#,Go,ruby,C++…… >>>byte code Type 2: C,assembler >>>machine 阅读全文
posted @ 2019-11-24 21:45 Zxver-L 阅读(132) 评论(0) 推荐(0)
 
上一页 1 2 3