Python 练习实例32
The box office offers walk-up service only. It is open three hours prior to events and one hour after the start of each event. Wednesday 11am-3pm. Chocolate Day Quotes Hindi 2021; Messages, Wishes, Quotes, Images, and SMS in Hindi to share on Chocolate Day 2021: The 3rd Day of Valentine’s week, Chocolate. Official site of The Week Magazine, offering commentary and analysis of the day's breaking news and current events as well as arts, entertainment, people and gossip, and political cartoons. Weeklist for 03/01 - 03/07 Alam niyo na since Monday na ulit. Check natin if may BUG pa din sa aking run since 2.0 na tayo mga sir. Sana March better ang March para saken. ☺️ #M1racleBuffs.
题目:请输入星期几的第一个字母来判断一下是星期几,如果第一个字母一样,则继续判断第二个字母。
程序分析:用情况语句比较好,如果第一个字母一样,则判断用情况语句或if语句判断第二个字母。。
程序源代码:
实例(Python2.x)
Week List 2021
#!/usr/bin/python# -*- coding: UTF-8 -*-letter = raw_input('please input:')#while letter != 'Y':ifletter'S': print('please input second letter:')letter = raw_input('please input:')ifletter'a': print('Saturday')elifletter'u': print('Sunday')else: print('data error')elifletter'F': print('Friday')elifletter'M': print('Monday')elifletter'T': print('please input second letter')letter = raw_input('please input:')ifletter'u': print('Tuesday')elifletter'h': print('Thursday')else: print('data error')elifletter'W': print('Wednesday')else: print('data error')
实例(Python3.x)
Week List Image
Week List Of 2016
#!/usr/bin/python3letter = input('please input:')#while letter != 'Y':ifletter'S': print('please input second letter:')letter = input('please input:')ifletter'a': print('Saturday')elifletter'u': print('Sunday')else: print('data error')elifletter'F': print('Friday')elifletter'M': print('Monday')elifletter'T': print('please input second letter')letter = input('please input:')ifletter'u': print('Tuesday')elifletter'h': print('Thursday')else: print('data error')elifletter'W': print('Wednesday')else: print('data error')
以上实例输出结果为:
Dallas Restaurant Week List Of Restaurants
Week List After Valentine Day
Python 练习实例32