Python练手例子(6)
2019-02-17 01:53:00来源:博客园 阅读 ()
31、请输入星期几的第一个字母来判断一下是星期几,如果第一个字母一样,则继续判断第二个字母。
程序分析:用情况语句比较好,如果第一个字母一样,则判断用情况语句或if语句判断第二个字母。
letter = input('Please input:') if letter == 'S': print('Please input second letter:') letter = input('Please input:') if letter == 'a': print('Saturday') elif letter == 'u': print('Sunday') else: print('Date error') elif letter == 'F': print('Friday') elif letter == 'M': print('Monday') elif letter == 'T': print('Please input second letter') letter = input('Please input:') if letter == 'u': print('Tuesday') elif letter == 'h': print('Thursday') else: print('Date error') elif letter == 'W': print('Wednesday') else: print('Date error')
32、按相反的顺序输出列表的值。
#python 3.7 a = ['one', 'two', 'three'] for i in a[::-1]: print(i)
33、按逗号分隔列表。
#python 3.7 L = [1, 2, 3, 4, 5] s = ','.join(str(n) for n in L) print(s)
34、练习函数调用。
#python 3.7 def hello_world(): print('hello world') def three_hellos(): for i in range(3): hello_world() if __name__ == '__main__': three_hellos()
35、文本颜色设置。
class bcolors: HEADER = '\033[95m' OKBLUE = '\033[94m' OKGREEN = '\033[92m' WARNING = '\033[93m' FAIL = '\033[91m' ENDC = '\033[0m' BOLD = '\033[1m' UNDERLINE = '\033[4m' print(bcolors.WARNING + "警告的颜色字体?" + bcolors.ENDC)
36、求100之内的素数。
#python 3.7 lower = int(input('输入区间最小值:')) upper = int(input('输入区间最大值:')) for num in range(lower, upper + 1): if num > 1: for i in range(2, num): if (num % i) == 0: break else: print(num)
参考资料:
1、Python 100例
2、文本颜色设置:https://blog.csdn.net/jacson_bai/article/details/71032462
原文链接:https://www.cnblogs.com/finsomway/p/10375017.html
如有疑问请与原作者联系
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- python3基础之“术语表(2)” 2019-08-13
- python3 之 字符串编码小结(Unicode、utf-8、gbk、gb2312等 2019-08-13
- Python3安装impala 2019-08-13
- 小白如何入门 Python 爬虫? 2019-08-13
- python_字符串方法 2019-08-13
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash