03.猜数字
Posted Python学习之路
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了03.猜数字相关的知识,希望对你有一定的参考价值。
#!/usr/bin/env python #coding:utf8 #Author:Felix zheng age_of_felix = 32 guess_age = input("guess age:") if guess_age == age_of_felix: print("yes,you got it.") elif guess_age > age_of_felix: print("think smaller!") else: print("think bigger!")
以上是关于03.猜数字的主要内容,如果未能解决你的问题,请参考以下文章