代表list从尾到头排列
>>> a = list(range(5))
>>> a
[0, 1, 2, 3, 4]
>>> a[::-1]
[4, 3, 2, 1, 0]
赞0踩0评论0
回答了问题2019-07-17
python中#号是什么意思
#及之后的字符代表注释
>>> a = list(range(5)); a; #This is comment
[0, 1, 2, 3, 4]
赞0踩0评论0
回答了问题2019-07-17
python e怎么表示
>>> import numpy as np
>>> np.e
2.718281828459045
赞0踩0评论0
回答了问题2019-07-17
python模式怎么退出
$ python
Python 2.7.10 (default, Feb 7 2017, 00:08:15)
[GCC 4.2.1 Compatible Apple LLVM 8.0.0 (clang-800.0.34)] on darwin
Type 'help', 'copyright', 'credits' or 'license' for more information.
>>> quit()
$
赞0踩0评论0
回答了问题2019-07-17
python中tuple是什么
python中的tuple是一种数据类型,由多个成员组成,与list相比不同之处在于tuple的成员不能修改。
>>> a = (1, 2, 'string', None)
>>> type(a)
>>> a
(1, 2, 'string', None)
>>> a[1]
2
>>> a[1] = 0
Traceback (most recent call last):
File '', line 1, in
TypeError: 'tuple' object does not support item assignment
赞0踩0评论0
回答了问题2019-07-17
python中pi怎么表示
>>> import numpy as np
>>> np.pi
3.141592653589793
赞1踩0评论0
回答了问题2019-07-17
python怎么引入包
import numpy
import pandas as pd
from matplotlib import pyplot as plt