初识Python

前言

据说Python是很好的语言,近两年突然非常火。那当然要了解一下了。

安装

http://python.org/download/

按照操作系统下载,安装Python,并配置环境变量

第一个程序

当然hello world

print("Hello World")

定义变量

name = "张三"
name2 = name   #赋值
age = 20

用户输入

input()

name = input("你的名字:")

print(name)

循换

while

i =0
while i<5:
    print(i)

注意Python会强制要求代码缩进。不然会报错

for

for i in range(10):
    print(i)

解释:
for循换

Python里面的continuebreak和C/Java的用法一样

文章目录