Python笔记---DAY1:基本操作if语句

Posted lilei0128

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python笔记---DAY1:基本操作if语句相关的知识,希望对你有一定的参考价值。

1、输出字符串:

print(“字符串”)

 

2、用python打开文档文件:

cmd 命令指示器

cd c:\ 其中cdchang 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("傻逼")

以上是关于Python笔记---DAY1:基本操作if语句的主要内容,如果未能解决你的问题,请参考以下文章

Python学习笔记day1基础介绍

python学习笔记-day1

Day1:If else流程判断

日撸 Java 三百行day1-10

day1,笔记内容

Python学习之路-Day1-Python基础