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的更多相关文章
随机推荐
- 【spring boot logback】日志logback格式解析
日志logback格式解析 logback官网 格式解析 https://logback.qos.ch/manual/layouts.html#ClassicPatternLayout 官网格式解析有 ...
- 蒙特卡洛法MATLAB
%%unifrnd函数的使用 %unifrnd函数可以创建随机的连续均匀分布的数组,一般式为R=unifrnd(A,B); %A和B是标量或者相同维数的行向量或者列向量.R=unifrnd(A,B,[ ...
- selenium用法 (python)
滑动到指定元素位置 browser.find_element_by_xpath("//font[text()='资产管理部经办人'][1]").location_once_scro ...
- 一入python深似海--range()、list与for
range使用方法 使用python的人都知道range()函数非常方便,今天再用到他的时候发现了非常多曾经看到过可是忘记的细节. 这里记录一下: range(1,5)#代表从1到5(不包括5) [1 ...
- 第十二题 Merge Sorted Array
Given two sorted integer arrays A and B, merge B into A as one sorted array. Note: You may assume th ...
- mock平台架构及实现
转载: http://blog.csdn.net/xkhgnc_6666/article/details/51757209 在测试过程中有些情况通过手工测试是无法测试出来的或是非常难复现,比如网络异常 ...
- An internal error occurred Exception caught during execution of commit command
在工程目录下找到 .git 文件夹 ,找到里面的 index.lock 文件,删掉再commit
- hdu 5444 Elven Postman(长春网路赛——平衡二叉树遍历)
题目链接:pid=5444http://">http://acm.hdu.edu.cn/showproblem.php?pid=5444 Elven Postman Time Limi ...
- metaq入门部署到实战
初识metaq zookeeper部署,这里单机zk为例. wget http://mirror.bit.edu.cn/apache/zookeeper/zookeeper-3.4.5/zookeep ...
- 基于pcl 和 liblas 库 las与pcd格式(rgb点)相互转换(win10 VS2013 X64环境 )
#include <liblas/liblas.hpp> #include <iomanip> #include <iostream> #include <s ...