分享好友 站长动态首页 网站导航

Python练习实例100例(从简入难)31-35

网友发布 2022-10-26 20:17 · 头闻号编程技术

相信有很多人都在努力地自学着Python,但自学过程中总是看懂了却不会做。这就像学生时期老师讲过了,觉得听懂了,但一看题就懵了。


Python 练习实例31题目:请输入星期几的第一个字母来判断一下是星期几,如果第一个字母一样,则继续判断第二个字母。

程序分析:用情况语句比较好,如果第一个字母一样,则判断用情况语句或if语句判断第二个字母。程序源代码:#!/usr/bin/python# -*- coding: UTF-8 -*- letter = raw_input#while letter != 'Y':if letter == 'S':print letter = raw_inputif letter == 'a': print elif letter == 'u': print else: print elif letter == 'F':print elif letter == 'M':print elif letter == 'T':print letter = raw_input if letter == 'u': print elif letter == 'h': print else: print elif letter == 'W':print else:print


Python 练习实例32题目:按相反的顺序输出列表的值。

程序分析:无。

程序源代码:#!/usr/bin/python# -*- coding: UTF-8 -*- a = ['one', 'two', 'three']for i in a[::-1]:print i


Python 练习实例33题目:按逗号分隔列表。程序分析:无。程序源代码:#!/usr/bin/python# -*- coding: UTF-8 -*- L = [1,2,3,4,5]s1 = ','.join for n in L)print s1
Python 练习实例34题目:练习函数调用。

程序分析:无。程序源代码:#!/usr/bin/python# -*- coding: UTF-8 -*- def hello_world:print 'hello world' def three_hellos:for i in range: hello_worldif __name__ == '__main__':three_hellos


Python 练习实例35题目:文本颜色设置。

程序分析:无。

免责声明:本平台仅供信息发布交流之途,请谨慎判断信息真伪。如遇虚假诈骗信息,请立即举报

举报
反对 0
打赏 0
更多相关文章

评论

0

收藏

点赞