python初学者

Posted 逍遥姐夫

tags:

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

最近一直在简单学习python。因为自己的编程基础不是很好,所以也是在慢慢的学习。

希望自己可以越学越好。

希望自己加油!

也没有什么随笔需要写,就抄写一份python的简单代码吧~

age_of_david = 31
count = 0
while count < 3:
    guess_age = int (input("guess david.z‘s age:"))
    if age_of_david == guess_age:
        print ("You are good!")
        break
    elif age_of_david > guess_age:
        print ("Think Big!!")
    else:
        print ("Think Small!!")
    count +=1
    if count == 3:
         coutine_confirm = input("do you want to keep guessing..?)
        if coutine_confirm != n:
            count = 0
else:
    print ("you have tried too many times..fuck off")

 

以上是关于python初学者的主要内容,如果未能解决你的问题,请参考以下文章

Python代码阅读(第41篇):矩阵转置

Python代码阅读(第25篇):将多行字符串拆分成列表

Python代码阅读(第13篇):检测列表中的元素是否都一样

Python代码阅读(第40篇):通过两个列表生成字典

PHP必用代码片段

Python Tornado初学笔记之表单与模板