python 基础 if语句

Posted 王子之心

tags:

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

技术分享图片
sex = input("please input your gender:")
if sex == "man":
    print("I would like to makefriend with you")
elif sex == "girl":
    print("I would like have a little monkey with you")
else:
    print("are you kidding me?")
guess sex game

python里面采用强制缩进,来指定作用域。类似于java里面的{}括起来的部分。如果没有缩进的话,python就会语法错误。
python只会认为要执行if下有缩进的那些语句。


以上是关于python 基础 if语句的主要内容,如果未能解决你的问题,请参考以下文章

Python基础之条件语句

Python新手学习基础之条件语句——if/else语句

Python基础04_Python中的if判断语句

Python基础-----条件语句与基本数据类型

给有C或C++基础的Python入门 :Python Crash Course 5 if语句

python基础--条件语句if else