码迷,mamicode.com
首页 > 编程语言 > 详细

PTA的Python练习题(十五)

时间:2020-02-21 12:46:30      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:练习题   图片   other   大于   nbsp   斐波那契   val   习题   http   

第4章-12 求满足条件的斐波那契数

技术图片

a=eval(input())
b=c=1
d=1
for i in range(a):
    c=b
    b=d
    d=b+c
    if d>a:
        print({}.format(d))
        break

 

第4章-13 求误差小于输入值的e的近似值

技术图片

a=eval(input())
b=1
count=1
count2=0
for i in range(1,100000):
    b=b*i
    count2=count
    count=count+1/b
    if (count-count2)<a:
        print({:6f}.format(count))
        break

 

第4章-14 统计字符

技术图片

参考了别人的代码:

技术图片


 

技术图片


技术图片


s=[]
count=0;letters=0;space=0;digit=0;others=0
while True:
    b=list(input())
    count=count+1
    s.extend(b)
    if len(s)+count>10:
        count=count-1
        break
for c in s:
    if c.isalpha():
        letters+=1
    elif c.isspace():
        space+=1
    elif c.isdigit():
        digit+=1
    else:
        others+=1
print(letter = {}, blank = {}, digit = {}, other = {}.format(letters,space+count,digit,others))

用列表输入,用count算回车数,如果合计大于10就退出循环,下面调用python自带函数计算

PTA的Python练习题(十五)

标签:练习题   图片   other   大于   nbsp   斐波那契   val   习题   http   

原文地址:https://www.cnblogs.com/echoDetected/p/12340811.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!