Day 3 第一个python

  1. 编码 unicode--支持中文

  2. 开始-->cmd-->cd c:\ -->dir
    cd=change directory
    c:> d: (直接转换磁盘目录)
    dir=查看当前目录文件列表
    cd.. 返回上一层目录
    cd../.. 返回上上一层目录
    cls:cmd 换页
    Day 3 第一个python

  3. 文件拓展名后缀名
    .txt 记事本
    .doc word文档
    .xls excel
    .ppt ppt
    .exe 执行文件
    .jpg png jpeg 图片
    .gif 动图
    .c .h C源码
    .php phy文件
    .js javascript

  4. print('hello world')

  5. 变量
    1)命名规则
    1>有具体描述性
    2>变量名只能以"_,数字,字母"组成,不可以是空格和特殊符合
    3>不能以中文为变量名
    4>不能以数字开头命名
    5>保留字符是不能被使用
    6>区分字母大小写

  6. 变量可重新赋值
    name=amy
    name1=name
    name=amy1
    print('name1,name')-->输出:amy,amy1

x=3
y=4
z=x*y
print('z=',z)

  1. 注释
    单行注释用#
    多行注释用“”“ 或'''

  2. 猜年龄、得分
    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")

上一篇:python基础-循环


下一篇:Rust学习笔记1