-
编码 unicode--支持中文
-
开始-->cmd-->cd c:\ -->dir
cd=change directory
c:> d: (直接转换磁盘目录)
dir=查看当前目录文件列表
cd.. 返回上一层目录
cd../.. 返回上上一层目录
cls:cmd 换页 -
文件拓展名后缀名
.txt 记事本
.doc word文档
.xls excel
.ppt ppt
.exe 执行文件
.jpg png jpeg 图片
.gif 动图
.c .h C源码
.php phy文件
.js javascript -
print('hello world')
-
变量
1)命名规则
1>有具体描述性
2>变量名只能以"_,数字,字母"组成,不可以是空格和特殊符合
3>不能以中文为变量名
4>不能以数字开头命名
5>保留字符是不能被使用
6>区分字母大小写 -
变量可重新赋值
name=amy
name1=name
name=amy1
print('name1,name')-->输出:amy,amy1
x=3
y=4
z=x*y
print('z=',z)
-
注释
单行注释用#
多行注释用“”“ 或''' -
猜年龄、得分
actual_age=50
guess_age=int(input('>>:'))
if guess_age=guess_age :
print('yes,right!')
elif guess_age>guess_age :
print('is smaller')
else:
print('is bigger')
score = int(input("score:"))
if score > 90:
print("A")
elif score > 80:
print("B")
elif score > 70:
print("C")
elif score > 50:
print("D")
else:
print("get out")