下班比较早,吃了饭没什么事,就和女朋友一起研究了Python。
编程语言有很多,为什么选择它呢?因为它火吧,没什么好解释的,下面开始第一步,环境搭建。网上的教程实在太多,各种系统的各种版本,本地链接下载,有真有假,乱七八糟。这里是官网下载地址:
我这里下载的是最新版,有关Python2到Python3有许多不兼容的问题,我想大家应该不需要担心,因为以后Python3肯定是主流,官方会尽快处理,所以新手学习还是从Python3开始吧。
进去之后会看到:
别的不要点了,按照这个顺序来就可以,反正我是这么做的,公司电脑是windows7
download->windows->python 3.6.3
然后开始下载。
几分钟之后(网速有点慢),打开下载文件python-3.6.3.exe,一步步next就可以了。不过为了免去配置环境变量这一步,要在下图位置打上勾:
然后可以默认安装路径,也可以选择自定义安装,就是costomize installation,路径中应该是不能有中文。如下:
稍等即可。显示如下图setup was successful就表示成功了。
那么怎么让这个东西跑起来呢?这里:
输入 idle ,回车,然后出来这么个东西:
完成。那三个大于号一样的东西表示程序准备就绪,就等你来操作了。上面是版本信息等,具体不解释。
下面是昨天晚上我女朋友敲出来的简单代码,我们属于新手入门,大家看看就好。
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
Python 3.6 . 3 (v3. 6.3 : 2c5fed8 , Oct 3 2017 , 17 : 26 : 49 ) [MSC v. 1900 32 bit (Intel)] on win32
Type "copyright" , "credits" Stream Vera Sans Mono', 'Courier New', Courier, monospace !important; float: none !important; border-top-width: 0px !important; border-bottom-width: 0px !important; height: auto !important; color: rgb(0, 102, 153) !important; vertical-align: baseline !important; overflow: visible !important; top: auto !important; right: auto !important; font-weight: bold !important; left: auto !important; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: initial; background-repeat: initial;" class="py keyword">or "license()" for more information.
>>> print (i love you!!)
SyntaxError: invalid syntax
>>> print ( "i love you 威威" )
i love you 威威
>>> print ( "weiwei" )
weiwei
>>> print ( "i lov" "e you!!" )
i love you!!
>>> print ( "i love you!!" )
i love you!!
>>> print ( "i lov" + "e weiwei" )
i love weiwei
>>> print ( 8 )
8
=
>>> print ( 8 )
8
>>> print ( 8 )
8
>>> print8 + 5
Traceback (most recent call last):
File "<pyshell#9>" , line 1 , in <module>
print8 + 5
NameError: name 'print8' is not defined
>>> print ( 8 + 5 )
13
>>> print ( 8 + 5 )
13
>>> print (weiwei * 8 )
Traceback (most recent call last):
File "<pyshell#12>" , line 1 , in <module>
print (weiwei * 8 )
NameError: name 'weiwei' is not defined
>>> print ( "weiwei" * 8 )
weiweiweiweiweiweiweiweiweiweiweiweiweiweiweiwei
>>> print ( "weiwei
" * 8 )
weiwei
weiwei
weiwei
weiwei
weiwei
weiwei
weiwei
weiwei
>>>
|