为了账号安全,请及时绑定邮箱和手机立即绑定

初识Python

廖雪峰 移动开发工程师
难度入门
时长 5小时 0分
学习人数
综合评分9.43
3762人评价 查看评价
9.7 内容实用
9.4 简洁易懂
9.2 逻辑清晰
  • gc
    空数组和单元素数组 空数组 PS C:Powershell> $a=@() PS C:Powershell> $a -is [array] True PS C:Powershell> $a.Count 0 1个元素的数组 PS C:Powershell> $a=,"moss" PS C:Powershell> $a -is [array] True PS C:Powershell> $a.Count 1
    查看全部
  • gc
    数组的多态 象变量一样如果数组中元素的类型为弱类型,默认可以存储不同类型的值。 PS C:Powershell> $array=1,"2012世界末日",([System.Guid]::NewGuid()),(get-date) PS C:Powershell> $array 1 2012世界末日 Guid ---- 06a88783-a181-4511-9e41-2780ecbd7924 DisplayHint : DateTime Date : 2011/12/9 0:00:00 Day : 9 DayOfWeek : Friday DayOfYear : 343 Hour : 14 Kind : Local Millisecond : 910 Minute : 15 Month : 12 Second : 45 Ticks : 634590369459101334 TimeOfDay : 14:15:45.9101334 Year : 2011 DateTime : 2011年12月9日 14:15:45
    查看全部
  • gc
    在Powershell中创建数组可以使用逗号。 PS C:Powershell> $nums=2,0,1,2 PS C:Powershell> $nums 2 0 1 2 对于连续的数字数组可以使用一个更快捷的方法 PS C:Powershell> $nums=1..5 PS C:Powershell> $nums 1 2 3 4 5
    查看全部
  • gc
    使用真实的对象操作 为什么不愿把IPconfig返回的结果称为对象,因为它不是真正Cmdlet命令,真正的Powershell命令返回的数组元素可不止一个字符串,它是一个内容丰富的对象。 PS C:Powershell> ls Directory: C:Powershell Mode LastWriteTime Length Name ---- ------------- ------ ---- d---- 2011/11/23 17:25 ABC d---- 2011/11/29 18:21 myscript -a--- 2011/11/24 18:30 67580 a.html -a--- 2011/11/24 20:04 26384 a.txt -a--- 2011/11/24 20:26 12060 alias 数组的每一个元素存放的是一个System.IO.DirectoryInfo对象。 当我们输出这些对象时,Powershell会自动帮我们把它转换成友好的文本格式。 PS C:Powershell> $result[0].gettype().fullname System.IO.DirectoryInfo PS C:Powershell> $result[0] Directory: C:Powershell Mode LastWriteTime Length Name ---- ------------- ------ ---- d---- 2011/11/23 17:25 ABC 对于任何一个对象都可以使用Format-List * 查看它所有的属性和方法。 PS C:Powershell> $result[0] | fl *
    查看全部
  • gc
    使用数组存储结果 判断一个变量是否为数组 PS C:Powershell> $ip=ipconfig PS C:Powershell> $ip -is [array] True PS C:Powershell> "abac" -is [array] False PS C:Powershell> $str="字符串" PS C:Powershell> $str.ToCharArray() -is [array] True 查看数组的元素个数用$array.Count属性。访问第x个元素,使用$array[x-1],因为数组是以0开始索引的。 使用管道对数组进一步处理 PS C:Powershell> ipconfig | Select-String "IP" Windows IP Configuration Link-local IPv6 Address . . . . . : *** IPv4 Address. . . . . . . . . . . : *** Link-local IPv6 Address . . . . . : ***
    查看全部
  • gc
    当我们把一个命令的执行结果保存到一个变量中,可能会认为变量存放的是纯文本。 但是,事实上Powershell会把文本按每一行作为元素存为数组。如果一个命令的返回值不止一个结果时,Powershell也会自动把结果存储为数组。 PS C:Powershell> $IPcfg=ipconfig PS C:Powershell> $IPcfg Windows IP Configuration Ethernet adapter Local Area Connection: Connection-specific DNS Suffix . : *** Link-local IPv6 Address . . . . . : *** IPv4 Address. . . . . . . . . . . : 192.168.140.128 Subnet Mask . . . . . . . . . . . : 255.255.252.0 Default Gateway . . . . . . . . . : 192.168.140.1 Tunnel adapter isatap.mossfly.com: Connection-specific DNS Suffix . : *** Link-local IPv6 Address . . . . . : *** Default Gateway . . . . . . . . . :*** Tunnel adapter Teredo Tunneling Pseudo-Interface: Media State . . . . . . . . . . . : Media disconnected Connection-specific DNS Suffix . : PS C:Powershell> $IPcfg.Count 22
    查看全部
  • gc
    ValidateRangeAttribute 例子,验证月份1-12 PS> $month=1 PS> (Get-Variable month).Attributes.Add( $( New-Object System.Management.Automation.ValidateRangeAttribute -ArgumentList 1,12) ) PS> $month=10 PS> $month=12 PS> $month=18 The variable cannot be validated because the value 18 is not a valid value for the month variable. At line:1 char:7 + $month <<<< =18 + CategoryInfo : MetadataError: (:) [], ValidationMetadataException + FullyQualifiedErrorId : ValidateSetFailure ValidateSetAttribute 例子,验证性别 PS> $sex="男" PS> $con=New-Object System.Management.Automation.ValidateSetAttribute -ArgumentList "男","女","保密" PS> (Get-Variable sex).Attributes.Add($con) PS> $sex="女" PS> $sex="不男不女" The variable cannot be validated because the value 不男不女 is not a valid value for the sex variable.
    查看全部
  • gc
    ValidatePatternAttribute 例子,验证Email格式 PS> $email="test@mossfly.com" PS> $con=New-Object System.Management.Automation.ValidatePatternAttribute "b[A-Z0-9._%+-]+@[A-Z0-9.-]+.[A-Z]{2,4}b" PS> (Get-Variable email).Attributes.Add($con) PS> $email="abc@abc.com" PS> $email="abc@mossfly.com" PS> $email="author@gmail.com" PS> $email="www@mossfly" The variable cannot be validated because the value www@mossfly is not a valid value for the email variable. At line:1 char:7 + $email <<<< ="www@mossfly" + CategoryInfo : MetadataError: (:) [], ValidationMetadataException + FullyQualifiedErrorId : ValidateSetFailure
    查看全部
  • gc
    ValidateNotNullOrEmptyAttribute 例子,注意@()为一个空数组。 PS> $con=New-Object System.Management.Automation.ValidateNotNullOrEmptyAttribute PS> (Get-Variable a).Attributes.clear() PS> (Get-Variable a).Attributes.add($con) PS> $a=$null The variable cannot be validated because the value is not a valid value for the a variable. At line:1 char:3 + $a <<<< =$null + CategoryInfo : MetadataError: (:) [], ValidationMetadataException + FullyQualifiedErrorId : ValidateSetFailure PS> $a="" The variable cannot be validated because the value is not a valid value for the a variable. At line:1 char:3 + $a <<<< ="" + CategoryInfo : MetadataError: (:) [], ValidationMetadataException + FullyQualifiedErrorId : ValidateSetFailure PS> $a=@() The variable cannot be validated because the value System.Object[] is not a valid value for the a variable. At line:1 char:3 + $a <<<< =@() + CategoryInfo : MetadataError: (:) [], ValidationMetadataException
    查看全部
  • gc
    ValidateNotNullAttribute 例子 PS> $a=123 PS> $con=New-Object System.Management.Automation.ValidateNotNullAttribute PS> (Get-Variable a).Attributes.Add($con) PS> $a=8964 PS> $a=$null 无法验证此变量,因为值 不是变量 a 的有效值。 所在位置 行:1 字符: 3 + $a <<<< =$null + CategoryInfo : MetadataError: (:) [], ValidationMetadataException + FullyQualifiedErrorId : ValidateSetFailure
    查看全部
  • gc
    验证和检查变量的内容 变量PSVariable对象的Attributes属性能够存储一些附件条件,例如限制变量的长度,这样在变量重新赋值时就会进行验证,下面演示如何限制一个字符串变量的长度为位于2-5之间。 PS> $var="限制变量" PS> $condition= New-Object System.Management.Automation.ValidateLengthAttribute -ArgumentList 2,5 PS> (Get-Variable var).Attributes.Add($condition) PS> $var="限制" PS> $var="射雕英雄传" PS> $var="看射雕英雄传" The variable cannot be validated because the value 看射雕英雄传 is not a valid value for the var variable. At line:1 char:5 + $var <<<< ="看射雕英雄传" + CategoryInfo : MetadataError: (:) [], ValidationMetadataException + FullyQualifiedErrorId : ValidateSetFailure 常用的变量内容验证还有5种,分别为: ValidateNotNullAttribute:限制变量不能为空 ValidateNotNullOrEmptyAttribute:限制变量不等为空,不能为空字符串,不能为空集合 ValidatePatternAttribute:限制变量要满足制定的正则表达式 ValidateRangeAttribute:限制变量的取值范围 ValidateSetAttribute:限制变量的取值集合
    查看全部
  • gc
    变量的类型规范 每个变量的都有自己的类型,这个具体的类型存放在PsVariable对象的Attributes[System.Management.Automation.PSVariableAttributeCollection]属性,如果这个Attributes为空,可以给这个变量存放任何 类型的数据,Powershell会自己选择合适的类型。一旦这个Attributes属性确定下来,就不能随意存放数据了。例如给$var存放一个整数,属于弱类型,所以Attributes属性为空,这时还可以给它赋值一个字符串。但是如果给$var增加强类型,存放一个整数,再给它赋值一个其它类型,解释器会自动尝试转换,如果不能转换就会抛出异常。这时如果你非得更新$var变量的类型,可以使用 (Get-Variable var).Attributes.Clear(),清空Attributes,这样强类型就又转换成弱类型了。 PS> $var=123 PS> (Get-Variable var).Attributes PS> $var.GetType().FullName System.Int32 PS> $var="字符串" PS> (Get-Variable var).Attributes PS> $var.GetType().FullName System.String PS> [int]$var=123 PS> (Get-Variable var).Attributes TypeId ------ System.Management.Automation.ArgumentTypeConverterAttribute PS> $var.GetType().FullName System.Int32 PS> $var="2012" PS> $var 2012 PS> $var.GetType().FullName System.Int32 PS> $var="2012世界末日" Cannot convert value "2012世界末日" to type "System.Int32". Error: "Input string was not in a correct format."
    查看全部
  • gc
    激活变量的写保护 可以操作一个变量的选项设置 ,比如给一个变量加上写保护,需要将Option设置为“ReadOnly” PS> $var="mossfly" PS> Set-Variable var -Option "ReadOnly" PS> (Get-Variable var).Options ReadOnly PS> Set-Variable var -Option "None" -Force PS> (Get-Variable var).Options None 变量的选项 变量的选项是一个枚举值,包含: “None”:默认设置 “ReadOnly”:变量只读,但是可以通过-Force 选项更新。 “Constant”:常量一旦声明,在当前控制台不能更新。 “Private”:只在当前作用域可见,不能贯穿到其它作用域 “AllScope”:全局,可以贯穿于任何作用域
    查看全部
  • gc
    修改变量的选项设置 Powershell处理一个变量的PSVariable对象,主要是为了能够更新变量的选项设置。既可以使用命令Set-Variable,也可以在获取PSvariable对象后直接更改。比如更改一个变量的描述: PS> $str="我是一个变量" PS> $var=Get-Variable str PS> $var Name Value ---- ----- str 我是一个变量 PS> $var | fl * Name : str Description : Value : 我是一个变量 Visibility : Public Module : ModuleName : Options : None Attributes : {} PS> $var.Description="我知道你是一个变量" PS> $var | fl * Name : str Description : 我知道你是一个变量 Value : 我是一个变量 Visibility : Public Module : ModuleName : Options : None Attributes : {} 如果你不想多加一个临时变量$var来存储PSVariable,可以使用Powershell子表达式 PS> (Get-Variable str).Description="变量的描述已更改;" PS> Get-Variable str | Format-Table Name,Description Name Description ---- ----------- str 变量的描述已更改
    查看全部
  • gc
    在Powershell中创建一个变量,会在后台生成一个PSVariable对象,这个对象不仅包含变量的值,也包含变量的其它信息,例如”只写保护”这样的描述。 如果在Powershell中输出一个变量,只会输出这个变量的值。不能够显示它的其它信息,如果想查看一个变量的其它保留信息,就需要变量的基类PSVariable对象,这个可以通过Get-Variable命令得到,下面的例子演示如何查看一个变量的全部信息。 PS> $a=get-date PS> Get-Variable a Name Value ---- ----- a 2011/12/8 17:52:02 PS> Get-Variable a | fl * Name : a Description : Value : 2011/12/8 17:52:02 Visibility : Public Module : ModuleName : Options : None Attributes : {}
    查看全部

举报

0/150
提交
取消
课程须知
如果您了解程序设计的基本概念,会简单使用命令行,了解中学数学函数的概念,那么对课程学习会有很大的帮助,让您学起来得心应手,快速进入Python世界。
老师告诉你能学到什么?
通过本课程的学习,您将学会搭建基本的Python开发环境,以函数为基础编写完整的Python代码,熟练掌握Python的基本数据类型以及list和dict的操作。

微信扫码,参与3人拼团

意见反馈 帮助中心 APP下载
官方微信
友情提示:

您好,此课程属于迁移课程,您已购买该课程,无需重复购买,感谢您对慕课网的支持!