由于公司需求需要学习下python,那就开始学习吧!
先get一下python的官网地址:https://www.python.org/
可以很明显的看到下载地址
image.png
安装时注意勾选
add Python 3.7.1 to path
,打开cmd
输入python
,看到如下效果就说明安装成功啦。
C:\Users\yiron>python
Python 3.7.1 (v3.7.1:260ec2c36a, Oct 20 2018, 14:57:15) [MSC v.1915 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
让我们来试下helloworld
吧!
>>> print('helloworld')
helloworld
>>> print('hello','world')
hello world
>>> print('hello','world'+123)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: can only concatenate str (not "int") to str
>>> print('hello','world',123)
hello world 123
>>> print('hello','world',100+200)
hello world 300
>>>
两种数据类型相加是不支持的,这点和java不一样,但是可以用逗号拼接,也可以用python的类型转换
>>> print('hello','world'+str(100+200))
hello world300
>>>
其他方式:
anaconda 镜像 https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/
网友评论