python学习笔记 Day1

1.hello world程序

1.vim  hello.py
2.输入代码 print("Hello World!")

3.保存退出 执行python hello.py
4.执行结果 Hello World!

2.变量与赋值

a.变量定义的规则:

变量名只能是 字母、数字或下划线的任意组合

变量名的第一个字符不能是数字

以下关键字不能声明为变量名
['and', 'as', 'assert', 'break', 'class', 'continue', 'def', 'del', 'elif', 'else', 'except', 'exec', 'finally', 'for', 'from', 'global', 'if', 'import', 'in', 'is', 'lambda', 'not', 'or', 'pass', 'print', 'raise', 'return', 'try', 'while', 'with', 'yield']

b.变量的赋值

变量的声明、赋值、含义解释

1 name = "lus"
2 name2 = name
3 
4 print (name,name2)
5 lus lus
6 
7 name = "lus2"
8 print (name,name2)
9 lus2 lus   //变量name2值并没有改变

3.用户交互

进入跟用户交互的环境

1 #!/usr/bin/env python
2 
3 name = input("What is your name?")
4 print("Hello " + name )

4.条件判断

5.循环控制

6.列表操作

7.二进制位运算

8.嵌套循环

9.文件操作

转载于:https://www.cnblogs.com/lussys/p/5474545.html

你可能感兴趣的:(python学习笔记 Day1)