资讯专栏INFORMATION COLUMN

Python基础练习100题 ( 31~ 40)

miracledan / 2202人阅读

摘要:刷题继续昨天和大家分享了题,今天继续来刷题解法一解法二解法一解法二解法一解法一解法一解法一解法一解法一解法二解法一解法二解法一源代码下载这十道题的代码在我的上,如果大家想看一下每道题的输出结果,可以点击以下链接下载题我的运行环境如果你

刷题继续

昨天和大家分享了21-30题,今天继续来刷31~40题

Question 31:

</>复制代码

  1. Define a function which can print a dictionary where the keys are numbers between 1 and 20 (both included) and the values are square of keys.

解法一

</>复制代码

  1. def printDict():
  2. d=dict()
  3. for i in range(1,21):
  4. d[i]=i**2
  5. print(d)
  6. printDict()
解法二

</>复制代码

  1. def printDict():
  2. dict={i:i**2 for i in range(1,21)}
  3. print(dict)
  4. printDict()
Question 32:

</>复制代码

  1. Define a function which can generate a dictionary where the keys are numbers between 1 and 20 (both included) and the values are square of keys. The function should just print the keys only.

解法一

</>复制代码

  1. def printDict():
  2. dict = {i: i**2 for i in range(1, 21)}
  3. print(dict.keys())
  4. printDict()
解法二

</>复制代码

  1. def printDict():
  2. d=dict()
  3. for i in range(1,21):
  4. d[i]=i**2
  5. for k in d.keys():
  6. print(k)
  7. printDict()
Question 33:

</>复制代码

  1. Define a function which can generate and print a list where the values are square of numbers between 1 and 20 (both included).

解法一

</>复制代码

  1. def printList():
  2. lst = [i ** 2 for i in range(1, 21)]
  3. print(lst)
  4. printList()
Question 34:

</>复制代码

  1. Define a function which can generate a list where the values are square of numbers between 1 and 20 (both included). Then the function needs to print the first 5 elements in the list.

解法一

</>复制代码

  1. def printList():
  2. lst = [i ** 2 for i in range(1, 21)]
  3. print(lst[:5])
  4. printList()
Question 35:

</>复制代码

  1. Define a function which can generate a list where the values are square of numbers between 1 and 20 (both included). Then the function needs to print the last 5 elements in the list.

解法一

</>复制代码

  1. def printList():
  2. lst = [i ** 2 for i in range(1, 21)]
  3. print(lst[-5:])
  4. printList()
Question 36:

</>复制代码

  1. Define a function which can generate a list where the values are square of numbers between 1 and 20 (both included). Then the function needs to print all values except the first 5 elements in the list.

解法一

</>复制代码

  1. def printList():
  2. lst = [i ** 2 for i in range(1, 21)]
  3. print(lst[5:])
  4. printList()
Question 37:

</>复制代码

  1. Define a function which can generate and print a tuple where the value are square of numbers between 1 and 20 (both included).

解法一

</>复制代码

  1. def printTuple():
  2. lst = [i ** 2 for i in range(1, 21)]
  3. print(tuple(lst))
  4. printTuple()
Question 38:

</>复制代码

  1. With a given tuple (1,2,3,4,5,6,7,8,9,10), write a program to print the first half values in one line and the last half values in one line.

解法一

</>复制代码

  1. tpl = (1,2,3,4,5,6,7,8,9,10)
  2. for i in range(0,5):
  3. print(tpl[i],end = " ")
  4. print()
  5. for i in range(5,10):
  6. print(tpl[i],end = " ")
解法二

</>复制代码

  1. tp = tuple(i for i in range(1,11))
  2. lst1,lst2 = list(tp[:5]),list(tp[5:])
  3. print(lst1)
  4. print(lst2)
Question 39:

</>复制代码

  1. Write a program to generate and print another tuple whose values are even numbers in the given tuple (1,2,3,4,5,6,7,8,9,10).

解法一

</>复制代码

  1. tpl = (1,2,3,4,5,6,7,8,9,10)
  2. tpl_even = tuple(i for i in tpl if i%2 == 0)
  3. print(tpl_even)
解法二

</>复制代码

  1. tpl = (1,2,3,4,5,6,7,8,9,10)
  2. tpl_even= tuple(filter(lambda x : x%2==0,tpl))
  3. print(tpl_even)
Question 40:

</>复制代码

  1. Write a program which accepts a string as input to print "Yes" if the string is "yes" or "YES" or "Yes", otherwise print "No".

解法一

</>复制代码

  1. s = input()
  2. if s.lower() == "yes":
  3. print("Yes")
  4. else:
  5. print("No")
源代码下载

这十道题的代码在我的github上,如果大家想看一下每道题的输出结果,可以点击以下链接下载:

Python 31-40题

我的运行环境Python 3.6+,如果你用的是Python 2.7版本,绝大多数不同就体现在以下3点:

raw_input()在Python3中是input()

print需要加括号

fstring可以换成.format(),或者%s,%d

谢谢大家,我们下期见!希望各位朋友不要吝啬,把每道题的更高效的解法写在评论里,我们一起进步!!!

文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。

转载请注明本文地址:https://www.ucloud.cn/yun/43945.html

相关文章

  • Python基础练习100 ( 41~ 50)

    摘要:刷题继续大家好,我又回来了,昨天和大家分享了题,今天继续来看题解法一解法二解法一解法二解法一解法二解法一解法二解法一解法一解法一解法一解法一解法一源代码下载这十道题的代码在我的上,如果大家想看一下每道题的输出结果,可以点击以下链接下载题 刷题继续 大家好,我又回来了,昨天和大家分享了31-40题,今天继续来看41~50题 Question 41: Write a program whi...

    mochixuan 评论0 收藏0
  • 测试开发必看:《笨办法学Python3》PDF中文高清版,豆瓣高分8.0

    摘要:笨办法学第版结构非常简单,共包括个习题,其中个覆盖了输入输出变量和函数三个主题,另外个覆盖了一些比较高级的话题,如条件判断循环类和对象代码测试及项目的实现等。最后只想说,学习不会辜负任何人,笨办法学 内容简介   《笨办法学Python(第3版)》是一本Python入门书籍,适合对计...

    不知名网友 评论0 收藏0
  • Python基础练习100 ( 81~ 90)

    摘要:刷题继续昨天和大家分享了题,今天继续来刷题解法一解法一解法二解法一解法一解法一解法一解法二解法一解法二解法一解法二解法三解法一解法一解法二源代码下载这十道题的代码在我的上,如果大家想看一下每道题的输出结果,可以点击以下链接下载题我的运 刷题继续 昨天和大家分享了71-80题,今天继续来刷81~90题 Question 81: By using list comprehension, p...

    刘德刚 评论0 收藏0
  • Python基础练习100 ( 71~ 80)

    摘要:刷题继续昨天和大家分享了题,今天继续来刷题解法一解法二解法一解法一解法二解法一解法一解法二解法一解法一解法二解法一解法二解法一解法二解法三解法一解法二源代码下载这十道题的代码在我的上,如果大家想看一下每道题的输出结果,可以点击以下链接下 刷题继续 昨天和大家分享了61-70题,今天继续来刷71~80题 Question 71: Please write a program to out...

    Jeff 评论0 收藏0
  • Python基础练习100 ( 51~ 60)

    摘要:刷题继续昨天和大家分享了题,今天继续来刷题解法一解法一解法一解法二解法一解法二解法一解法二解法三解法一解法一解法一解法一解法一源代码下载这十道题的代码在我的上,如果大家想看一下每道题的输出结果,可以点击以下链接下载 刷题继续 昨天和大家分享了41-50题,今天继续来刷51~60题 Question 51: Write a function to compute 5/0 and use ...

    岳光 评论0 收藏0

发表评论

0条评论

最新活动
阅读需要支付1元查看
<