Crossin的编程教室

标题: 猜数字小游戏,帮忙分析下代码优劣 [打印本页]

作者: lovorld    时间: 2016-3-9 09:28
标题: 猜数字小游戏,帮忙分析下代码优劣
新人第一帖,用两种代码实现了,基础比较差,大家帮忙从复杂度和执行效率等方面评价一下,感谢啦~

#!/usr/bin/python
# -*- coding=utf-8 -*-

import random

tnum = random.randint(0,100)  # generate a random int type number

print('Guess what number I\'m thinking' )
n = int(input('plz input your answer:'))   # get input
while n != tnum:
    if n > tnum:
        print('too large')
    else:
        print('too small')
    n = int(input('plz input your answer:'))

if n == tnum:
    print('you get it,congratulations!')


#!/usr/bin/python
# -*- coding=utf-8 -*-

import random

tnum = random.randint(0,100)  # generate a random int type number

print('Guess what number I\'m thinking' )
n = int(input('plz input your answer:'))   # get input
while True:
    if n > tnum:
        print('too large')
        n = int(input('plz input your answer:'))
    elif n < tnum:
        print('too small')
        n = int(input('plz input your answer:'))
    else:
        print('you get it,congratulations!')
        break




作者: crossin先生    时间: 2016-3-9 14:55
运行效率角度来说基本没差。第一种,最后一个if可以不用
作者: lovorld    时间: 2016-3-9 17:54
crossin先生 发表于 2016-3-9 14:55
运行效率角度来说基本没差。第一种,最后一个if可以不用

嗯,是,后来意识到了




欢迎光临 Crossin的编程教室 (https://bbs.crossincode.com/) Powered by Discuz! X2.5