Ⅰ python問題 第一題 請編寫程序輸出奇偶數月份。 原題為ecoder上控製程序一
if (month<=7 and month%2!=0) or (month>=8 and month%2==0):
print("yes")
else :print("no")
你的變數a沒被賦予month的值,所以用month 不用a
剛才填笑敗了個行尾 : 親測可運行。你還可以碰喚顫更嚴謹一點兒
比如month >=1 and month <=7 或 month>=8 and month<=12之類
比如:
if (month>=1 and month<=7 and month%2!=0) or (month>=8 and month<=12 and month%2==0):
print ("yes")
else:print("no"鏈舉)
或者樓下那種縮寫:
if(1<=month<=7 and a%2!=0) or (8<=month<=12 and month%2==0):
...
Ⅱ python編程題
mons = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]
def get_days(mon, day):
if mon == 1:
return mons[0], day
else:
count = sum(mons[:mon-1])
count = count + day
return mons[mon - 1], count
mon = int(input("請輸入月份:"))
day = int(input("請輸入號數:"))
result = get_days(mon, day)
print("{}月有{}天。".format(mon, result[0]))
print("{}月{}號是該年的第{}天".format(mon, day, result[1]))
Ⅲ python的月份換算,有大佬你能幫幫忙嗎
一、源碼
months=""
n=int(input("Enter a month number (1-12):"))-1
n*=3
print("The month abbreviation is %s." %(months[n:n+3]))
二、輸入1月的截圖
Ⅳ python怎麼輸出時間
你可以試下下面的方式來取得當前時間的時間戳:
import time
print time.time()
輸出的結果是:
1357723206.31
但是這樣是一連串的數字不是我們想要的結果,我們可以利用time模塊的格式化時間的方法來處理:
time.localtime(time.time())
用time.localtime()方法,作用是格式化時間戳為本地的時間。
輸出的結果是:
time.struct_time(tm_year=2010, tm_mon=7, tm_mday=19, tm_hour=22, tm_min=33, tm_sec=39, tm_wday=0, tm_yday=200, tm_isdst=0)
現在看起來更有希望格式成我們想要的時間了。
time.strftime('%Y-%m-%d',time.localtime(time.time()))
最後用time.strftime()方法,把剛才的一大串信息格式化成我們想要的東西,現在的結果是:
2013-01-09
輸出日期和時間:
time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time()))
time.strftime裡面有很多參數,可以讓你能夠更隨意的輸出自己想要的東西:
下面是time.strftime的參數:
strftime(format[, tuple]) -> string
將指定的struct_time(默認為當前時間),根據指定的格式化字元串輸出
python中時間日期格式化符號:
%y 兩位數的年份表示(00-99)
%Y 四位數的年份表示(000-9999)
%m 月份(01-12)
%d 月內中的一天(0-31)
%H 24小時制小時數(0-23)
%I 12小時制小時數(01-12)
%M 分鍾數(00=59)
%S 秒(00-59)
%a 本地簡化星期名稱
%A 本地完整星期名稱
%b 本地簡化的月份名稱
%B 本地完整的月份名稱
%c 本地相應的日期表示和時間表示
%j 年內的一天(001-366)
%p 本地A.M.或P.M.的等價符
%U 一年中的星期數(00-53)星期天為星期的開始
%w 星期(0-6),星期天為星期的開始
%W 一年中的星期數(00-53)星期一為星期的開始
%x 本地相應的日期表示
%X 本地相應的時間表示
%Z 當前時區的名稱
%% %號本身
Ⅳ python任意輸入一個月份(1—12),判斷該月份有多少天(不考慮2月份29天的特殊情況)
def month(n):
if n in [1,3,5,7,8,10,12]:
return 31
elif n in [4,6,9,11]:
return 30
elif n in [2]:
return 28
else:
return n, " is not a month"
Ⅵ Python 怎麼將整數換算成月份和天數
如果你想將它轉換成一個字元串,你可以簡單地使用:
convert_string = '01-01-{}'.format
,然後用它喜歡:
>>> convert_string(2020)
'01-01-2020'
向一個日期時間
如果要將其轉換為datetime對象,則可以簡單地使用:
from datetime import date
from functools import partial
convert_to_date = partial(date,month=1,day=1)
現在convert_to_date是一個數值year轉換成date對象的功能:
>>> convert_to_date(2020)
datetime.date(2020, 1, 1)