Python的初步了解

Posted 专注嵌入式系统开发

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python的初步了解相关的知识,希望对你有一定的参考价值。

  Python是解析性语言,Python解释器将源程序解释并执行。

  基本语法  

  print()   --打印字符串

  -直接打印

print("hello world")

  结果:

  hello world

  -打印字符串变量

hello = ‘hello world‘
print(hello)

  结果:

  hello world

  -打印unicode编码

hello = ‘hellou0020world‘
print(hello)

  结果:

  hello world

  Python根据对齐缩进来区分程序块

 代码一:

while count < 5:
    print(count)
    # count = 100
    count = count + 1

print(123)

 输出结果为: 

0
1
2
3
4
5

123

代码二:

count = 0
while count < 10:
    print(count)
    # count = 100
    count = count + 1

    print(123)

  输出结果为:

0
123
1
123
2
123
3
123
4
123
5
123

 代码一与代码二唯一的区别就是对齐不一样,导致的结果就截然不同,所以在使用python编程时必须注意代码缩进与对齐的问题。 

















以上是关于Python的初步了解的主要内容,如果未能解决你的问题,请参考以下文章

[Misc] python 开发vim 插件初步测试

初步了解python

初步了解IronPython

Python.0001.初步了解

初步了解Python

Python的初步了解