编程语言
首页 > 编程语言> > Python1--简介及基础语法

Python1--简介及基础语法

作者:互联网

0. 简介

Python易于学习的编程语言,有很多现成的第三方库可以调用,不用重复造轮子,老话说:“人生苦短,我用 Python”

1. 安装Python

Mac:brew install python3
Window: 官网下载--图形页面一步步点,也可以直接在Microsoft Store下载安装

2. 启动Python
➜  ~ python3
Python 3.7.5 (default, Nov 29 2019, 14:32:46)
[Clang 9.0.0 (clang-900.0.39.2)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>>
pip install ipython
#!/usr/bin/env python3
# -*- coding: cp1252 -*-
3. Hello World
# 伊洛Yiluo  公众号:伊洛的小屋
# https://yiluotalk.com/
>>> print('Hello World')
Hello World
>>>
4. 数据类型
  1. None 代表的是空、编程的世界里空并不就是0的意思
# type是 Python内置函数
# 伊洛Yiluo
# https://yiluotalk.com/
>>> type(None)
<class 'NoneType'>
>>> type(0)
<class 'int'>
  1. 布尔值 代表 “真”、“假”
# bool 是 Python内置函数
>>> bool(1)
True
>>> bool(0)
False
>>> bool(False)
False
>>> bool(True)
True
  1. int整数 如1、2、5
  2. float浮点数 如3.1415926、 1.2
  3. str 字符串 如‘Tom’、‘Hello World’
'spam eggs'
>>> 'doesn\'t'  # 通过'\'  转义单引号
"doesn't"
>>> "doesn't"  # 通过双引号替代
"doesn't"
  1. list列表 如[1, 2, 3, 4, 5]
  2. tuple元组 如(6,7,8,9,10)
  3. dic 字典 如 dict_score = {'Tom': 98, 'Joe': 88, 'Wade': '99'}
  4. set 集合 stock = {'Apple', 'Tencent', 'Alibaba', 'Amazon', 'Google', 'Tesla'}
>>> 2+ 2
4
>>> 50 - 2*5
40
>>> (50 - 10*3) /2
10.0
>>> 4 / 2 # 除法总是返回浮点数
2.0
>>> 17 // 3 # 地板除舍弃了小数
5
>>> 17 % 3 # % 返回余数
2 
5. 变量
# format 格式化输出
>>> stock = 'Apple'  # Apple 赋值给股票 stock 
>>> print('I buy {}'.format(stock))
I buy Apple
6. 缩进

官方代码规范
https://www.python.org/dev/peps/pep-0008/

标签:--,简介,doesn,Python,bool,World,Python1,Hello,stock
来源: https://www.cnblogs.com/yiluotalk/p/13552839.html