This is the first day of studying Python. From 3PM to now, It has taken me nearly 5 hours to 初步了解 python.

The first part is to 激活 路飞学城 python lessons. At the beginning, I thought it was not difficult to learn this machine language. However, I found myself totally wrong, this is because I have spent almost 3 hours to build 搭建学习环境, such as to download PYCHARM, which is an application to 编译代码.

1. Ctrl+D: copy the line.

2.Ctrl+E: delete the line.

3 .Shift+Enter: change the line immediately.

4. Ctrl+/: give note注释.

5. Tab:缩进当前行.

6. Shift+Tab: cancle 缩进.

7. Ctrl+F: search.

8. Ctrl+H: change

9. Ctrl+ -: floder this part code.

10 Ctrl+ Shift+ -: floder this file.

After 安装并配置好 Pycharm APP, I started to learn python 1st and 2nd lessons. In these lessons, I have know about these parts of PYTHON.

The first one is about the history of python, when python is created, the recent rank of PYTHON in machine languages and its long term rank in machine languages. From the information given by Alex, I realize that python is a young machine language and nowadays it has become more and more popular and used in different parts. As for myself, the part I am most interested in is Artificial Intelligence and I know that if I want to work in AI 领域, I have to master in mathematics and be professional in Python. In order to reach my goal, I have to work hard and follow my teachers' advice.

The following part I know from this lesson is about 爬虫. Before this lesson, I have no knowledge about this thing. And I am very glad to know it through this class. 爬虫 means machines 模仿 people's way to copy codes from other 论坛/websites. This is because from this way, these 论坛/websites will not find these copyers are machines.

The thirs part is about which companies are using python now. Many international companies are using Python, such as UBER, YELP, GOOGLE, etc. Thus, you can know that python is so popular that more and more people and coraptions will use it. So I think my decision is right to learn this machine language and I 坚信 I can find a good job even start my own company with my professional python skill.

Last but not least, when I learn python, not only I am supposed to strenthen my professional skills but also to be keen on its future development. Only after putting eyes on the future, can we win the future!

"Life is short, you need python!"------Bruce Eckel.

PS: Tesla CEO; Enda WU;

The 1st day of learning Python的更多相关文章

  1. Python学习入门基础教程(learning Python)--5.6 Python读文件操作高级

    前文5.2节和5.4节分别就Python下读文件操作做了基础性讲述和提升性介绍,但是仍有些问题,比如在5.4节里涉及到一个多次读文件的问题,实际上我们还没有完全阐述完毕,下面这个图片的问题在哪呢? 问 ...

  2. Learning Python 002 print() 和 input()

    Python print() 和 input() print()函数 print()函数可以向终端中输入指定的内容. 输出当个字符串 .py文件中,输入下面的代码,并保存: print('hello ...

  3. Learning Python 008 正则表达式-001

    Python 正则表达式 总结 这节课讲讲正真使用的技术 - 正真表达式. 文本爬虫 什么是正则表达式 正则表达式这个名词听起来就有一种很官方的感觉,但是它是一个很很很有用的技术.我用语言是不能形容它 ...

  4. 【Learning Python】【第四章】Python代码结构(一)

    这一章的主旨在于介绍python的代码结构 缩进 在很多的编程语言中,一般{}用于控制代码块,比如以下的一段C代码 if(var <= 10) { printf("....." ...

  5. 【Learning Python】【第二章】Python基础类型和基础操作

    基础类型: 整型: py 3.0解决了整数溢出的问题,意味着整型不必考虑32位,64位,有无符号等问题,你写一个1亿亿亿,就是1亿亿亿,不会溢出 a = 10 ** 240 print(a) 执行以上 ...

  6. Python学习教程(learning Python)--3.3.4 Python的if-elif-else语句

    Python的if-elif-else语句用于多种条件判断后选择某个语句块执行.该语句可以利用一系列条件表达式进行检查,并在某个表达式为真的情况下执行相应的代码.需要注意的是,虽然if/elif/el ...

  7. Python学习教程(learning Python)--3.3.3 Python逻辑关系表达式

    在if分支判断语句里的条件判断语句不一定就是一个表达式,可以是多个(布尔)表达式的组合关系运算,这里如何使用更多的关系表达式构建出一个比较复杂的条件判断呢?这里需要再了解一下逻辑运算的基础知识.逻辑关 ...

  8. Python学习教程(learning Python)--3.3.2 Python的关系运算

    如果if的condition不用布尔表达式来做条件判断而采用关系表达式,实际上关系表达式运算的结果要么是True要么是False.下面我们先了解一些有关关系运算符的基础知识,如下表所示. 做个小程序测 ...

  9. Python学习教程(learning Python)--3.3.1 Python下的布尔表达式

    简单的说就是if要判断condition是真是假,Python和C语言一样非0即真,所以如果if的condition是布尔表达式我们可以用True或者非0数(不可是浮点数)表示真,用False或者0表 ...

随机推荐

  1. C#实现文件与二进制互转并存入数据库

    这篇文章主要介绍了C#实现文件与二进制互转并存入数据库,本文直接给出代码实例,代码中包含详细注释,需要的朋友可以参考下 //这个方法是浏览文件对象     private void button1_C ...

  2. Flask 的整体流程

    Flask 的整体流程 封装 requestContext 对象, full_dispatch_request(视图函数 执行), response返回 从app.run() 开始 -->> ...

  3. Js事件处理模型/周期

    有3个阶段 1.  捕获阶段:由外向内,记录各级父元素上绑定的事件处理函数---只记录,不触发. 2.  目标触发:优先触发目标元素上的事件处理函数. 3.  冒泡:由内向外,按捕获的顺序的相反的方向 ...

  4. GIL、死锁与递归锁

    一.互斥锁 用互斥锁,目的:局部串行(保护自己的数据 进程之间数据不共享,但是共享同一套文件系统,所以访问同一个文件,或同一个打印终端,是没有问题的,竞争带来的结果就是错乱,如何控制,就是加锁处理(即 ...

  5. I.MX6 fbset 使用

    /****************************************************************************** * I.MX6 fbset 使用 * 说 ...

  6. Set Matrix Zeros

    Question: Given a m x n matrix, if an element is 0, set its entire row and column to 0. Do it in pla ...

  7. 【转】C# Socket编程(3)编码和解码

    [转自:https://www.cnblogs.com/IPrograming/archive/2012/10/13/CSharp_Socket_3.html] 在网络通信中,很多情况下:比如说QQ聊 ...

  8. Django: TemplateDoesNotExist (rest_framework/api.html)

    需要在站点前面的INSTALLED_APP里面加上rest_framework

  9. 11g R2 rac linstener 监听配置

    两个节点host,ipvip ,scan的信息 #eth0-Public IP 162.12.0.1    cqltjcpt1 162.12.0.3    cqltjcpt2 #eth1 PRIVAT ...

  10. Fiddler的Java抓包

    代码处理 System.setProperty("http.proxySet", "true"); System.setProperty("http. ...