1、输出字符串:
print(“字符串”)
2、用python打开文档文件:
cmd 命令指示器
cd c:\ 其中cd是chang directory更改目录,用tab键可快速寻找到目标文件
dir 查看当前目录文件列表
3、cmd中操作:
d: 第二次更改目录时无需加\
cd.. 返回上一层目录
cd..\.. 返回上两层目录
执行命令 目标文件目录 用所用程序打开某一文件
exit 退出
-v 查看版本
4、描述数据:
student_numbers=1 用下划线代替空格
studentNumbers=1 驼峰体
PIE=3.14 常量全部用大写
5、删除变量:
del 变量
6、查看变量类型:
print(type(变量))
7、注释:
#命令 单行注释
‘’’命令
命令’’’ 多行注释
8、交互小程序:
death_age=100
name=input("your name:") input结果默认为字符串
age=input("your age:")
print("you can live",death_age-int(age),"years!")
字符串转整数:int(数据)
整数转字符串:str(数据)
9、猜年龄程序:
age_of_god=100
guess_age=int(input("guess_age:"))
if age_of_god==guess_age: 判断时使用双等号
print("you are right!") 注意tab缩进
else:
print("you are wrong!")
10、多分支if语句:
score=int(input("score:"))
if score>90:
print("A")
elif score>80: elif=else if
print("B")
elif score>70:
print("C")
else:
print("傻逼")