python脚本式编程_Python编程入门(一)

Python编程入门(一)

=========================================================================================

概述:

=========================================================================================

编程语言

1.脚本编程语言★脚本编程语言如php,perl,python,java等为脚本编程语言,通常需要通过解释器解释运行。

★python(java)程序的执行过程source code(源码 .py)--->conplier(编译)--->bytecode(字节码 .pyc)--->解释器pvm或者jvm(运行在各自的虚拟机,也是运行时的真正所在位置)--->processor(CPU)

2.Python的实现(pvm:编译器和解释器)★CPython原始,标准的实现方式

★Jython用于于java语言集成的实现

★IronPython用于于.NET框架集成实现

Python安装及数据类型

1.python:一切皆对象★python2 <--> python3过程式编程:指令+数据。以指令为中心,数据服务于指令需要。

对象式编程:以数据为中心(对象),指令服务于数据。

☉类--->class有两部分组成属性:

方法:

对象:向属性赋值;(python 当中一切皆对象!所以,一旦创建了一个对象,那么它就跟某类操作绑定起来了)

比如,对于数据类型“数值”来讲,它的属性就是:附一个数值,如,b=345。一旦对象类型确定了,那么它所支持的方法也就确定了,所以,任何一个对象只要创建出来,它必须属于某一个类型,也就必须跟这个类型支持的方法绑定在了一起(即:它所支持的方法也就确定了)

注意:

如果需要大量调用系统命令(如,系统维护脚本)来完成某些操作,用bash shell脚本足以实现;只有写一个完整的不依赖系统命令(如,复杂的程序)的情况下才有必要用到Python。

★python是动态类型的编程语言

☉变量

☉数据类型

◆核心数据类型数值:

字符串:

列表:

字典:

元组:

文件:

其他类型:集合,类类型,None,布尔型

◆动态类型支持动态绑定

◆强类型严格区分数据类型

可以显示的将一种数据类型转换为另一种数据类型,如:str(),repr(),format()等

★数字类型整数

浮点数

复数

★字符类型字符串字面量:用于引用一个字符序列,由特定次序的字符组成的字符序列。

支持3中引号:‘’,"","""(表示多行引用)

演示:

1.python3的安装及位置查看#安装python3

[root@CentOS6 ~]# yum install python34 python34-devel python34-libs python34-tools

#查看安装的位置

[root@CentOS6 ~]# rpm -ql python34

/usr/bin/pydoc3

/usr/bin/pydoc3.4

/usr/bin/python3

/usr/bin/python3.4

/usr/bin/python3.4m

/usr/bin/pyvenv

/usr/bin/pyvenv-3.4

/usr/share/doc/python34-3.4.5

/usr/share/doc/python34-3.4.5/LICENSE

/usr/share/doc/python34-3.4.5/README

/usr/share/man/man1/python3.1.gz

/usr/share/man/man1/python3.4.1.gz

[root@CentOS6 ~]# cd /usr/bin/

[root@CentOS6 bin]# ll python*

-rwxr-xr-x 2 root root 9032 Jul 24 2015 python

lrwxrwxrwx. 1 root root 6 Nov 6 2016 python2 -> python

-rwxr-xr-x 2 root root 9032 Jul 24 2015 python2.6

lrwxrwxrwx 1 root root 9 Jan 16 20:02 python3 -> python3.4

-rwxr-xr-x 2 root root 6088 Dec 12 00:59 python3.4

lrwxrwxrwx 1 root root 17 Jan 16 20:02 python3.4-config -> python3.4m-config

-rwxr-xr-x 2 root root 6088 Dec 12 00:59 python3.4m

-rwxr-xr-x 1 root root 173 Dec 12 00:58 python3.4m-config

-rwxr-xr-x 1 root root 3285 Dec 12 00:57 python3.4m-x86_64-config

lrwxrwxrwx 1 root root 16 Jan 16 20:02 python3-config -> python3.4-config

[root@CentOS6 ~]# python3

Python 3.4.5 (default, Dec 11 2017, 16:57:19)

[GCC 4.4.7 20120313 (Red Hat 4.4.7-18)] on linux

Type "help", "copyright", "credits" or "license" for more information.

>>> print("Hello,world") #在python3中,print为函数

Hello,world

>>> exit()

2.字符串[root@CentOS6 ~]# python3

Python 3.4.5 (default, Dec 11 2017, 16:57:19)

[GCC 4.4.7 20120313 (Red Hat 4.4.7-18)] on linux

Type "help", "copyright", "credits" or "license" for more information.

>>> str. #字符窜的常用操作

str.__add__( str.__getattribute__( str.__name__ str.__text_signature__ str.isdigit( str.rfind(

str.__base__( str.__getitem__( str.__ne__( str.__weakrefoffset__ str.isidentifier( str.rindex(

str.__bases__ str.__getnewargs__( str.__new__( str.capitalize( str.islower( str.rjust(

str.__basicsize__ str.__gt__( str.__prepare__( str.casefold( str.isnumeric( str.rpartition(

str.__call__( str.__hash__( str.__qualname__ str.center( str.isprintable( str.rsplit(

str.__class__( str.__init__( str.__reduce__( str.count( str.isspace( str.rstrip(

str.__contains__( str.__instancecheck__( str.__reduce_ex__( str.encode( str.istitle( str.split(

str.__delattr__( str.__itemsize__ str.__repr__( str.endswith( str.isupper( str.splitlines(

str.__dict__ str.__iter__( str.__rmod__( str.expandtabs( str.join( str.startswith(

str.__dictoffset__ str.__le__( str.__rmul__( str.find( str.ljust( str.strip(

str.__dir__( str.__len__( str.__setattr__( str.format( str.lower( str.swapcase(

str.__doc__ str.__lt__( str.__sizeof__( str.format_map( str.lstrip( str.title(

str.__eq__( str.__mod__( str.__str__( str.index( str.maketrans( str.translate(

str.__flags__ str.__module__ str.__subclasscheck__( str.isalnum( str.mro( str.upper(

str.__format__( str.__mro__ str.__subclasses__( str.isalpha( str.partition( str.zfill(

str.__ge__( str.__mul__( str.__subclasshook__( str.isdecimal( str.replace(

>>> mystr="Hello World"

>>> mystr1="""abc #支持"""或者''' 3引号的多行引用

... efg"""

>>> print(mystr)

Hello World

>>> print(mystr1)

abc

efg

>>> s='Hello'

>>> s*5 #字符串可进行乘法运算

'HelloHelloHelloHelloHello'

>>> w=' world'

>>> s+w #字符串相加

'Hello world'

>>> len(s) #取字符串的长度

5

>>> len(w)

6

>>> 'he' in s #判断字符串的成员关系

False

>>> 'He' in s

True

>>> s.lower() #转换为小写

'hello'

>>> s.upper() #转换为大写

'HELLO'

>>> help(str.replace) #查看帮助

>>> print(s)

Hello

>>> s.replace("H","h")

'hello'

Python过程型程序设计介绍

1.数据结构★数据结构通过某种方式(例如对元素进行编号)组织在一起的数据元素的集合,这些数据元素可以是数字或者字符,甚至可以是其他数据结构;

Python的最基本数据结构是序列(有序的元素集合);

序列中的每个元素被分配一个序号——即元素的位置,也称为索引(索引从0开始编号);

Python 包含6种内建的数据序列:列表,元祖,字符串,Unicode字符串,buffer对象和xrange对象。

2.Python的关键要素★Python的关键要素基本数据类型;

对象引用;

组合数据类型;

逻辑操作符;

控制流语句;

算数操作符;

输入/输出;

函数的创建与调用。

☉要素1:基本数据类型任何程序语言都必须能够表示基本数据项

◆Python的基本数据类型有:Integral 类型

整型:不可变类型(如:-257,201624583337114373395836)

布尔型:True,False

浮点类型

浮点数:3.141592

复数:3+6j

十进制数:

字符串

如:'GNU is Not Unix',"hello","world"

☉要素2:对象引用(变量)Python将所有数据存为内存对象

Python中,变量事实上是指内存对象的引用;

动态类型:在任何时刻,只要需要,某个对象引用都可以重新引用一个不同的对象(可以是不同的数据类型);

内建函数type()用于返回给定数数据项的数据类型;

“=”用于将变量名于内存中的某对象绑定:如果对象事先存在,就直接进行绑定,否则,则由“=”创建引用的对象

watermark,size_16,text_QDUxQ1RP5Y2a5a6i,color_FFFFFF,t_100,g_se,x_10,y_10,shadow_90,type_ZmFuZ3poZW5naGVpdGk=

◆变量命名规则只能包含字母,数字和下划线,且不能以数字开头;

区分字母大小写;

禁止使用保留字(Python2于Python3的保留字有所不同)

◆命名惯例:以单一下划线开头变量名(_x)不会被 from module import * 语句导入;

前后有下划线的变量名(_x_)是系统定义的变量名,对Python解释器有特殊意义;

以两个下划线开头但结尾没有下划线的变量名(__x)是类的本地变量;

交互式模式下,变量名"_"用于保存最后表达式的结果

注意:变量名没有类型,对象才有

☉要素3:组合数据类型

编写,执行Python代码

1.交互式解释器★直接启动python,其显示信息取决于程序版本及操作系统等

watermark,size_16,text_QDUxQ1RP5Y2a5a6i,color_FFFFFF,t_100,g_se,x_10,y_10,shadow_90,type_ZmFuZ3poZW5naGVpdGk=

2.python程序文件★交互式模式下的程序执行完成后难以再次运行;

★将编写的程序文件保存至文件(.py)中方便多次运行python的此类包含了一系列预编写好的语句的程序文件称作“模块”;

能够直接运行的模块文件通常称作脚本(即程序的顶层文件)

☉python源程序文件通常以 .py 为扩展名

watermark,size_16,text_QDUxQ1RP5Y2a5a6i,color_FFFFFF,t_100,g_se,x_10,y_10,shadow_90,type_ZmFuZ3poZW5naGVpdGk=第一行为shebang,即执行脚本时,通知内容要启动的解释器;

第二行通过 import 导入一个python模块 platform

第三行打印platform模块的platform 方法的执行结果

☉给予此脚本执行权限,并执行即可

watermark,size_16,text_QDUxQ1RP5Y2a5a6i,color_FFFFFF,t_100,g_se,x_10,y_10,shadow_90,type_ZmFuZ3poZW5naGVpdGk=

★Python程序可以分解成模块,语句,表达式和对象

☉程序由模块组成;

☉模块包含语句;

☉语句包含表达式

☉表达式建立并处理对象表达式是“某事”,而语句是“做某事(即指令)”;例如:3+4是某事,而 print(3+4) 是做某事;

语句的特性:它改变了事物,例如,赋值语句改变了变量,print 语句改变了屏幕输出等

演示:

1.platform模块[root@centos7 ~]# python3.4

Python 3.4.8 (default, Mar 23 2018, 10:04:27)

[GCC 4.8.5 20150623 (Red Hat 4.8.5-16)] on linux

Type "help", "copyright", "credits" or "license" for more information.

>>> import platform

>>> platform.

platform.DEV_NULL platform.__spec__ platform.architecture(

platform._UNIXCONFDIR platform.__str__( platform.collections

platform._WIN32_CLIENT_RELEASES platform.__subclasshook__( platform.dist(

platform._WIN32_SERVER_RELEASES platform.__version__ platform.java_ver(

platform.__cached__ platform._default_architecture platform.libc_ver(

platform.__class__( platform._dist_try_harder( platform.linux_distribution(

platform.__copyright__ platform._follow_symlinks( platform.mac_ver(

platform.__delattr__( platform._get_real_winver( platform.machine(

platform.__dict__ platform._ironpython26_sys_version_parser platform.node(

platform.__dir__( platform._ironpython_sys_version_parser platform.os

platform.__doc__ platform._java_getprop( platform.platform(

platform.__eq__( platform._libc_search platform.popen(

platform.__file__ platform._lsb_release_version platform.processor(

platform.__format__( platform._mac_ver_xml( platform.python_branch(

platform.__ge__( platform._node( platform.python_build(

platform.__getattribute__( platform._norm_version( platform.python_compiler(

platform.__gt__( platform._parse_release_file( platform.python_implementation(

platform.__hash__( platform._platform( platform.python_revision(

platform.__init__( platform._platform_cache platform.python_version(

platform.__le__( platform._pypy_sys_version_parser platform.python_version_tuple(

platform.__loader__ platform._release_filename platform.re

platform.__lt__( platform._release_version platform.release(

platform.__name__ platform._supported_dists platform.subprocess

platform.__ne__( platform._sys_version( platform.sys

platform.__new__( platform._sys_version_cache platform.system(

platform.__package__ platform._sys_version_parser platform.system_alias(

platform.__reduce__( platform._syscmd_file( platform.uname(

platform.__reduce_ex__( platform._syscmd_uname( platform.uname_result(

platform.__repr__( platform._syscmd_ver( platform.version(

platform.__setattr__( platform._uname_cache platform.win32_ver(

platform.__sizeof__( platform._ver_output

>>> platform.platform()

'Linux-3.10.0-327.el7.x86_64-x86_64-with-centos-7.2.1511-Core'

>>> platform.uname()

uname_result(system='Linux', node='centos7', release='3.10.0-327.el7.x86_64', version='#1 SMP Thu Nov 19 22:10:57 UTC 2015', machine='x86_64', processor='x86_64')

>>> platform.system()

'Linux'

>>> platform.dist()

('centos', '7.2.1511', 'Core')

>>> platform.python_version()

'3.4.8'

3.Python IDE★IDLE标准 Python 环境提供

☉Eclipse和PyDev

☉PythonWin

☉Komodo

☉Wingware

☉PyCharm

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/507291.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

for循环里面有异步操作_JS 线程与异步的那些事

已知&#xff0c;JavaScript 是单线程的&#xff0c;天生异步&#xff0c;适合 IO 密集型&#xff0c;不适合 CPU 密集型&#xff0c;但是&#xff0c;为什么是异步的喃&#xff0c;异步由何而来的喃&#xff0c;我们将在这里逐渐讨论实现。一、进程与线程1. 浏览器是多进程的它…

FDRNet: Fourier Document Restoration for Robust Document Dewarping and Recognition学习笔记

1 广告 这篇工作由字节跳动商业化技术团队与新加坡南洋理工大学合作完成。 话不都说&#xff0c;先看效果&#xff1a; FDRNet的效果看上去有点好&#xff0c;可惜没有源代码提供。 2 相关工作 2.1 几何形变恢复方法Geometric Document Restoration 由相机传感器捕获的文档…

python如何在所有线程结束后执行最后操作_Python线程的生命周期

在线程的生命周期中&#xff0c;从创建到执行以及最终终止&#xff0c;线程通常处于四种状态之一&#xff1a;开始态、可调度状态、阻塞态和终止态。 父线程和子线程 当一个新的进程或程序开始运行时&#xff0c;它将以一个线程开始&#xff0c;这个线程被称为主线程。然后主线…

mac怎么安装python开发环境搭建_Mac OS搭建Python开发环境

简书 Wwwwei转载请注明原创出处&#xff0c;谢谢&#xff01;前言最近在看一些关于机器学习的内容&#xff0c;其中大量代码需要Python的运行环境&#xff0c;所以搭建了Python开发环境&#xff0c;这里记录下&#xff0c;方便大家学习。安装PythonMac OS下安装Python主要方式有…

文本图形处理(扭曲变形、增强等)的源代码列表-1

文本图形扭曲变形 Google:Document image dewarping GitHub Document image dewarping using text-lines and line Segments https://github.com/taeho-kil/Document-Image-Dewarping Document Dewarping with Control Points https://github.com/gwxie/Document-Dewarping…

python小数补0,python用零填充小数

Im looking for a way to pad the float decimals with zeros:This one is my reference:In [37]: {:5.5}.format(round(4.123456, 5))Out[37]: 4.1235I have this:In [38]: {:5.5}.format(4.1)Out[38]: 4.1But I would like to have this:Out[38]: 4.1000解决方案To format a…

通讯可以并联吗_工业控制知识:吃透RS485通讯的连接方式,接485总线就简单多了...

RS485被广泛使用&#xff0c;可以支持ModBus协议。由于其简单、价优、可靠和成熟&#xff0c;因此&#xff0c;被广泛应用于工业控制、智能仪器和电力通信。我们来看看RS485的一个典型组网结构&#xff1a;理论上&#xff0c;RS485总线的传输距离可以达到1200米。然而&#xff…

python列表添加元素的三种方法定义集合数据对象_(1) List,tuple,dictionary,Python语法基础集,一,之,列表,元组,字典,集合...

Python序列&#xff08;列表、元组、字典、集合&#xff09; 一、列表&#xff08;List&#xff09;与列表推导式 &#xff08;一&#xff09;列表&#xff08;list&#xff09; 1.列表是Python内置 可变序列 &#xff08;列表中元素可增加删除或修改&#xff09;&#xff1b; …

vue如何获取tree当前选中的节点_vue中element-ui 树形控件-树节点的选择(选中当前节点,获取当前id并且获取其父级id)...

出处&#xff1a;Element-ui官网给的方法getCheckedKeys() { console.log(this.$refs.tree.getCheckedKeys()); },1这种只有在所有子级都被选中的情况下才能获得父级的id&#xff0c;如果不选中所有的子级那么获取得到的id就只有子级的。但是一般提交数据时后台都需要父级id的。…

nodejs操作sqlserver数据_nodejs基于mssql模块连接sqlserver数据库的简单封装操作示例...

本文实例讲述了nodejs基于mssql模块连接sqlserver数据库的简单封装操作。分享给大家供大家参考&#xff0c;具体如下&#xff1a;注意:开启sqlserver服务器允许远程连接的步骤,自行百度,很多经验,nodejs连接sqlserver,最好把防火墙的入站规则关闭,或者允许入站.这个封装只是sql…

python解压_python解压

Python 的代码块不使用大括号&#xff08; {} &#xff09;来控制类&#xff0c;函数以及其他 逻辑判断。 python 最具特色的就是用缩进来写模块。 缩进的空白数量是可变的&#xff0c;但是所有代码块语句必须包含相同的缩进空白数量&#xff0c;这个必须严格执行。 Python 语句…

python编程a的x次方_「Python 面试」第四次更新

阅读本文大约需要 5 分钟。 15.说一说 GIL 前面有提到由于 Python 基于 C 语言编写的解释器中设置了一个 GIL 全局变量锁&#xff0c;该锁使得 Python 的多线程在处理 CPU 计算密集型任务时&#xff0c;同一时刻只能有一个线程在运行&#xff0c;这也是为什么说 Python 的多线程…

Exploiting Vector Fields for Geometric Rectification of Distorted Document Images学习笔记

1 广告 [1] Exploiting Vector Fields for Geometric Rectification of Distorted Document Images 利用矢量场对变形文档图像进行几何校正。 2018年发表在ECCV会议上的一篇非深度学习的文档去扭曲。 本文提出了一种对手持相机捕获的扭曲文档图像进行几何校正的无分段方法。…

java 单元测试_在springboot中写单元测试解决依赖注入和执行后事务回滚问题

往期文章「Java并发编程」谈谈Java中的内存模型JMM面试官&#xff1a;说说你知道多少种线程池拒绝策略为什么不要在MySQL中使用UTF-8编码方式前言很多公司都有写单元测试的硬性要求&#xff0c;在提交代码的时候&#xff0c;如果单测通不过或者说单元测试各种覆盖率不达标&…

文本图形处理(扭曲变形、增强等)的源代码列表-2

1 基于深度学习的文档扭曲矫正 Dewarping Document Image By Displacement Flow Estimation with Fully Convolutional Network https://github.com/gwxie/Dewarping-Document-Image-By-Displacement-Flow-Estimation Here are 12 public repositories matching this topic……

java编译_解析 Java 即时编译器原理。

↑ 点击上面 “时代Java”关注我们&#xff0c;关注新技术&#xff0c;学习新知识&#xff01;一、导读常见的编译型语言如C&#xff0c;通常会把代码直接编译成CPU所能理解的机器码来运行。而Java为了实现“一次编译&#xff0c;处处运行”的特性&#xff0c;把编译的过程分成…

ios nsstring根据ascii码大小排序_iOS(NSPredicate) 谓词的使用

参考iOS-谓词的使用详解NSPredicate 谓词NSPredicateA definition of logical conditions used to constrain a search either for a fetch or for in-memory filtering.一种逻辑条件的定义&#xff0c;可以根据定义的模糊查询条件&#xff0c;对内存对象进行过滤搜索。1.比较运…

恒位油杯故障原因_抽油烟机常见故障及处理方法

您知道抽油烟机常见故障及处理方法是什么吗&#xff1f;抽油烟机通电后不能启动&#xff0c;可能是因为电源线断路或接头脱焊&#xff0c;仔细查出断路点或脱焊点&#xff0c;重新焊牢。通断开关断路或触点接触不良&#xff0c;检查断路器处是否焊好&#xff0c;若触点接触不良…

会议容易中吗_在装配式建筑中重要又容易被忽视的部分,你中招了吗?

装配式 建筑装配式建筑大家应该都有听过&#xff0c;那么这种建筑又是怎样构成的呢&#xff1f;装配式建筑概览▲▲▲装配式建筑粘结方案▲▲▲密封胶作为装配式建筑中的重要材料&#xff0c;起到不可忽视的作用~SMP密封胶&#xff0c;1978年开始生产&#xff0c;最初是针对硅酮…

Document image dewarping using text-lines and line Segments学习笔记

1 核心思想 论文:Robust Document Image Dewarping Method Using Text-Lines and Line Segments 论文:Document Dewarping via Text-line based Optimization 代码:https://github.com/taeho-kil/Document-Image-Dewarping 传统的基于文本行的文档去扭曲方法在处理复杂布局…