python_learn1
1、python在命令行获取当前的路径。
import os
os.getcwd()
os.chdir(r"C:\Users\szlon\Desktop\pythonexer")
2、在Python中\是转义符,\u表示其后是UNICODE编码,因此\User在这里会报错,在字符串前面加个r表示就可以了。
Note:python中的字符串定义不是单引号吗?
3、解答上面的Note问题,Python中的单引号、双引号和三引号。
4、python安装过程及怎么在windows命令行运行python文件。
python安装过程不叙述,记得勾选将python路径放入Windows运行环境。
上面用到了两个Windows命令,CD转换运行路径。DIR显示当前路径下的所有文件。
import 文件名即可。
6、教程中最开始的$符号是Linux命令行默认开始符号。
内置len函数。
S1 = [1,2,3]
S2 = [0,[1,2,3]]
len(S1) = 3
len(S2) = 2
也就是list可以当任意类型当做一个元素来对待,即使它本身也是个list类型。
元组合list都是序列。
8、获取命令行输入
直接input就好,是系统内置函数,不需要import。
例:
>>> mac_addr = input('请输入MAC地址:')
请输入MAC地址:10:23:45:67:89:10
>>> print(mac_addr)
10:23:45:67:89:10
9、练习一早上
Python 3.7.2 (tags/v3.7.2:9a3ffc0492, Dec 23 2018, 23:09:28) [MSC v.1916 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license()" for more information.
>>> print('Hello World!')
Hello World!
>>> $python hello.py
SyntaxError: invalid syntax
>>> import os
>>> os.getcwd()
'C:\\Users\\szlon\\AppData\\Local\\Programs\\Python\\Python37'
>>> os.chdir("C:\Users\szlon\Desktop\pythonexer")
SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 2-3: truncated \UXXXXXXXX escape
>>> os.chdir('C:\Users\szlon\Desktop\pythonexer')
SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 2-3: truncated \UXXXXXXXX escape
>>> os.chdir(r"C:\Users\szlon\Desktop\pythonexer")
>>> os.getcwd
<built-in function getcwd>
>>> os.getcwd()
'C:\\Users\\szlon\\Desktop\\pythonexer'
>>> hello.py
Traceback (most recent call last):
File "<pyshell#9>", line 1, in <module>
hello.py
NameError: name 'hello' is not defined
>>> import hello
Hello World!
>>> a = 10
>>> print(a)
10
>>> print(type(a))
<class 'int'>
>>> a = 1.3
>>> print(a,type(a))
1.3 <class 'float'>
>>> a = True
>>> print(a,type(a))
True <class 'bool'>
>>> a = 'Hello!'
>>> print(a,type(a))
Hello! <class 'str'>
>>> s1 = (2,1.3,'love',5.6,9,12,False)
>>> print(s1,type(s1))
(2, 1.3, 'love', 5.6, 9, 12, False) <class 'tuple'>
>>> s2 = [true,5,'simle']
Traceback (most recent call last):
File "<pyshell#22>", line 1, in <module>
s2 = [true,5,'simle']
NameError: name 'true' is not defined
>>> s2 = [True,5,'simle']
>>> print(s2,type(s2))
[True, 5, 'simle'] <class 'list'>
>>> s3 = [1,[3,4,5]]
>>> print(s3,type(s3))
[1, [3, 4, 5]] <class 'list'>
>>> print(s3.count)
<built-in method count of list object at 0x0000021356CD5AC8>
>>> print(s3.count())
Traceback (most recent call last):
File "<pyshell#28>", line 1, in <module>
print(s3.count())
TypeError: count() takes exactly one argument (0 given)
>>> print(len(s3)
)
2
>>> print(len(s3))
2
>>> print(s1[0])
2
>>> print(s2[2])
simle
>>> print(s3[1][2])
5
>>> mac_addr = input('请输入MAC地址:')
请输入MAC地址:10:23:45:67:89:10
>>> print(mac_addr)
10:23:45:67:89:10
>>> print 1+9
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(1+9)?
>>> print (1+9)
10
>>> print (1.3 - 4)
-2.7
>>> print (3*5)
15
>>> print (4.5/1.5)
3.0
>>> print(3**2)
9
>>> print(10%3)
1
>>> print( 5 == 6)
False
>>> print (8.0 != 8.0)
False
>>> print( 3 < 3, 3 <= 3)
False True
>>> print(4 > 5, 4 >= 0)
False True
>>> print(5 in [1,3,5])
True
>>> print(True and True, True and False)
True False
>>> print(True or False)
True
>>> print(not True)
False
>>> print( 5==6 or 3 >=3)
True
>>>
10、input输入的是字符串,怎么输入整数或者基本类型的数。
a = int(input('请输入一个整数'))
11、一个求绝对值的小模块
a = int(input('请输入一个数:')) if a >= 0:
a = a
else:
a = -a print('a的绝对值为:',a)
12、1-100求和
sum = 0; for i in range(101):
sum += i print(sum)
python_learn1的更多相关文章
随机推荐
- Java Web开发(JSP、Servlet)乱码的一揽子解决方案
千万不要看网上那些杂七杂八的解决乱码的文章,解决乱码最好的方法是(没有之一):在所有地方统一采用UTF-8编码. 这其中包括: 1 - 工程 如果使用的是Eclipse,那么打开Preference, ...
- MFC中 用Static控件做超链接(可以实现变手形、下划线、字体变色等功能)
1.新建一个基于对话框的工程MyLink,在对话框中拖一个Static控件,ID可改为IDC_SLink. 2.在头文件中添加成员变量: private: CRect m_Rect; CFont* m ...
- 15.【nuxt起步】-Nuxt使用jsweixin sdk
npm install weixin-js-sdk --save 这个不行,这个是vue前端用的 网上找了一些vue jsweixin的案例 不能直接用 因为nuxt是后端运行,windows对象取不 ...
- Google SEO 学习网站记录
在搜索结果中创建良好的标题和摘要: https://support.google.com/webmasters/answer/35624?hl=zh-Hans&ref_topic=600194 ...
- TensorFlow笔记五:将cifar10数据文件复原成图片格式
cifar10数据集(http://www.cs.toronto.edu/~kriz/cifar-10-python.tar.gz)源格式是数据文件,因为训练需要转换成图片格式 转换代码: 注意文件路 ...
- mysql下监测数据库语句creating sort index时间过长的问题
在一张单表5000W数据上进行数据查询时传入两个单列索引条件,进行组合索引查询时,如果最后有order by id排序,与去除该排序,性能差距接近两个数量级 结论:在使用列的默认排序时,不应该再ord ...
- vue2.X 自定义 模态框 modal
1.自定义 modal Modal.vue <!-- 模态框 --> <template> <div class="modal-mask" v-sho ...
- Android中Java与web通信
Android中Java与web通信不是新的技术了,在android公布之初就支持这样的方式,2011年開始流行,而这样的模式开发也称作Hybird模式. 这里对android中的Java与web通信 ...
- Mongo-Hadoop
下载 https://github.com/mongodb/mongo-hadoop/releases 解压到/home/kevin/hadoop/hadoop/share/mongo-hadoop- ...
- 转:SATA协议简介
SATA协议简介 版权声明:本文为博主原创文章,未经博主允许不得转载. https://blog.csdn.net/FA99999/article/details/70738724 1.概述 本文档主 ...