Python论坛  - 讨论区

标题:[python-chinese] 问一下,如何得到今天是星期几

2005年02月08日 星期二 09:01

duotaiya duotaiya duotaiya at yahoo.com.cn
Tue Feb 8 09:01:22 HKT 2005

我在python中通过gtk.calendar.get_date()
可以得到当前的年,月,日
但是我无法得到今天是星期几,请问如何实现(不管用什么方式)?


我的日记本程序马上就要好了,就缺这个细节上的问题了

哪位高人知道怎么得到的话,请回

万分感谢!

_________________________________________________________
Do You Yahoo!?
150万曲MP3疯狂搜,带您闯入音乐殿堂
http://music.yisou.com/
美女明星应有尽有,搜遍美图、艳图和酷图
http://image.yisou.com
1G就是1000兆,雅虎电邮自助扩容!
http://cn.rd.yahoo.com/mail_cn/tag/1g/*http://cn.mail.yahoo.com/event/mail_1g/


[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年02月08日 星期二 09:44

hutuworm hutuworm at gmail.com
Tue Feb 8 09:44:05 HKT 2005

不管用什么方式?

from datetime import date
date.today().weekday()


On Tue, 8 Feb 2005 09:01:22 +0800 (CST), duotaiya duotaiya
<duotaiya at yahoo.com.cn> wrote:
> 我在python中通过gtk.calendar.get_date()
> 可以得到当前的年,月,日
> 但是我无法得到今天是星期几,请问如何实现(不管用什么方式)?
> 
> 我的日记本程序马上就要好了,就缺这个细节上的问题了
> 
> 哪位高人知道怎么得到的话,请回
> 
> 万分感谢!
> 
> _________________________________________________________
> Do You Yahoo!?
> 150万曲MP3疯狂搜,带您闯入音乐殿堂
> http://music.yisou.com/
> 美女明星应有尽有,搜遍美图、艳图和酷图
> http://image.yisou.com
> 1G就是1000兆,雅虎电邮自助扩容!
> http://cn.rd.yahoo.com/mail_cn/tag/1g/*http://cn.mail.yahoo.com/event/mail_1g/
> _______________________________________________
> python-chinese list
> python-chinese at lists.python.cn
> http://python.cn/mailman/listinfo/python-chinese
> 


-- 
In doG We Trust
http://www.hutuworm.org


[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年02月08日 星期二 10:22

Qiangning Hong hongqn at gmail.com
Tue Feb 8 10:22:56 HKT 2005

On Tue, 8 Feb 2005 09:01:22 +0800 (CST), duotaiya duotaiya
<duotaiya at yahoo.com.cn> wrote:
> 我在python中通过gtk.calendar.get_date()
> 可以得到当前的年,月,日
> 但是我无法得到今天是星期几,请问如何实现(不管用什么方式)?

你可以试试datetime.datetime.weekday

-- 
Excellent FOSS (Free/Open Source Software):

Get Firefox!
http://www.spreadfirefox.com/?q=affiliates&id=67907&t=1

Reclaim Your Inbox!
http://www.spreadfirefox.com/?q=affiliates&id=67907&t=183


[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年02月08日 星期二 10:58

Hoxide Ma hoxide_dirac at yahoo.com.cn
Tue Feb 8 10:58:40 HKT 2005

>>> import time
>>> time.gmtime()
(2005, 2, 8, 2, 57, 10, 1, 39, 0)
>>> time.strftime('%w',time.gmtime())
'2'

具体参看 python manual 

 --- duotaiya duotaiya <duotaiya at yahoo.com.cn>
的正文:
> 我在python中通过gtk.calendar.get_date()
> 可以得到当前的年,月,日
>
但是我无法得到今天是星期几,请问如何实现(不管用什么方式)?
> 
> 
> 我的日记本程序马上就要好了,就缺这个细节上的问题了
> 
> 哪位高人知道怎么得到的话,请回
> 
> 万分感谢!
> 
>
_________________________________________________________
> Do You Yahoo!?
> 150万曲MP3疯狂搜,带您闯入音乐殿堂
> http://music.yisou.com/
> 美女明星应有尽有,搜遍美图、艳图和酷图
> http://image.yisou.com
> 1G就是1000兆,雅虎电邮自助扩容!
>
http://cn.rd.yahoo.com/mail_cn/tag/1g/*http://cn.mail.yahoo.com/event/mail_1g/
> _______________________________________________
> python-chinese list
> python-chinese at lists.python.cn
> http://python.cn/mailman/listinfo/python-chinese
>  

_________________________________________________________
Do You Yahoo!?
150万曲MP3疯狂搜,带您闯入音乐殿堂
http://music.yisou.com/
美女明星应有尽有,搜遍美图、艳图和酷图
http://image.yisou.com
1G就是1000兆,雅虎电邮自助扩容!
http://cn.rd.yahoo.com/mail_cn/tag/1g/*http://cn.mail.yahoo.com/event/mail_1g/


[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年02月08日 星期二 15:52

唐国巍 tgw_cl at 163.net
Tue Feb 8 15:52:33 HKT 2005

python-chinese,您好!

	对于一些内置函数或模块比如SYS、OS,这些模块无法通过打开一个文件的形式来查看,那么怎么确切知道这些模块内含的函数的具体形式,如参数的个数和类型

        致
礼!
 				

        唐国巍
        tgw_cl at 163.net
          2005-02-08

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年02月08日 星期二 19:58

duotaiya duotaiya duotaiya at yahoo.com.cn
Tue Feb 8 19:58:10 HKT 2005

谢谢个位的热心帮助

 --- Hoxide Ma <hoxide_dirac at yahoo.com.cn> 的正文:
> >>> import time
> >>> time.gmtime()
> (2005, 2, 8, 2, 57, 10, 1, 39, 0)
> >>> time.strftime('%w',time.gmtime())
> '2'
> 
> 具体参看 python manual 
> 
>  --- duotaiya duotaiya <duotaiya at yahoo.com.cn>
> 的正文:
> > 我在python中通过gtk.calendar.get_date()
> > 可以得到当前的年,月,日
> >
>
但是我无法得到今天是星期几,请问如何实现(不管用什么方式)?
> > 
> > 
> > 我的日记本程序马上就要好了,就缺这个细节上的问题了
> > 

> > 哪位高人知道怎么得到的话,请回
> > 
> > 万分感谢!
> > 
> >
>
_________________________________________________________
> > Do You Yahoo!?
> > 150万曲MP3疯狂搜,带您闯入音乐殿堂
> > http://music.yisou.com/
> > 美女明星应有尽有,搜遍美图、艳图和酷图
> > http://image.yisou.com
> > 1G就是1000兆,雅虎电邮自助扩容!
> >
>
http://cn.rd.yahoo.com/mail_cn/tag/1g/*http://cn.mail.yahoo.com/event/mail_1g/
> > _______________________________________________
> > python-chinese list
> > python-chinese at lists.python.cn
> > http://python.cn/mailman/listinfo/python-chinese
> >  
> 
>
_________________________________________________________
> Do You Yahoo!?
> 150万曲MP3疯狂搜,带您闯入音乐殿堂
> http://music.yisou.com/
> 美女明星应有尽有,搜遍美图、艳图和酷图
> http://image.yisou.com
> 1G就是1000兆,雅虎电邮自助扩容!
>
http://cn.rd.yahoo.com/mail_cn/tag/1g/*http://cn.mail.yahoo.com/event/mail_1g/
> _______________________________________________
> python-chinese list
> python-chinese at lists.python.cn
> http://python.cn/mailman/listinfo/python-chinese
>  

_________________________________________________________
Do You Yahoo!?
注册世界一流品质的雅虎免费电邮
http://cn.rd.yahoo.com/mail_cn/tag/1g/*http://cn.mail.yahoo.com/


[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年02月17日 星期四 16:34

hw_cg hw_cg at huawei.com
Thu Feb 17 16:34:23 HKT 2005

date.today().weekday()返回值的和 time.strftime("%w",time.gmtime())返回值不一致,是我理解错了?
请指教。  应该是星期四。

>>> import time
>>> time.gmtime()
(2005, 2, 17, 8, 29, 26, 3, 48, 0)
>>> time.strftime("%w", time.gmtime())
'4'
>>> from datetime import date
>>> date.today()
datetime.date(2005, 2, 17)
>>> date.today().weekday()
3


----- Original Message ----- 
From: "hutuworm" <hutuworm at gmail.com>
To: <python-chinese at lists.python.cn>
Sent: Tuesday, February 08, 2005 9:44 AM
Subject: Re: [python-chinese] 问一下,如何得到今天是星期 几


不管用什么方式?

from datetime import date
date.today().weekday()


On Tue, 8 Feb 2005 09:01:22 +0800 (CST), duotaiya duotaiya
<duotaiya at yahoo.com.cn> wrote:
> 我在python中通过gtk.calendar.get_date()
> 可以得到当前的年,月,日
> 但是我无法得到今天是星期几,请问如何实现(不管用什么方式)?
> 
> 我的日记本程序马上就要好了,就缺这个细节上的问题了
> 
> 哪位高人知道怎么得到的话,请回
> 
> 万分感谢!
> 
> _________________________________________________________
> Do You Yahoo!?
> 150万曲MP3疯狂搜,带您闯入音乐殿堂
> http://music.yisou.com/
> 美女明星应有尽有,搜遍美图、艳图和酷图
> http://image.yisou.com
> 1G就是1000兆,雅虎电邮自助扩容!
> http://cn.rd.yahoo.com/mail_cn/tag/1g/*http://cn.mail.yahoo.com/event/mail_1g/
> _______________________________________________
> python-chinese list
> python-chinese at lists.python.cn
> http://python.cn/mailman/listinfo/python-chinese
> 


-- 
In doG We Trust
http://www.hutuworm.org
_______________________________________________
python-chinese list
python-chinese at lists.python.cn
http://python.cn/mailman/listinfo/python-chinese

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年02月17日 星期四 17:15

limodou limodou at gmail.com
Thu Feb 17 17:15:16 HKT 2005

你仔细看一下weekday()返回的是数值3,

weekday( ) 

Return the day of the week as an integer, where Monday is 0 and Sunday
is 6. For example, date(2002, 12, 4).weekday() == 2, a Wednesday.

星期一是0,因此3就是星期4了。

On Thu, 17 Feb 2005 16:34:23 +0800, hw_cg <hw_cg at huawei.com> wrote:
> date.today().weekday()返回值的和 time.strftime("%w",time.gmtime())返回值不一致,是我理解错了?
> 请指教。  应该是星期四。
> 

-- 
I like python! 
My Blog: http://www.donews.net/limodou
New Maillist: http://groups-beta.google.com/group/python-cn


[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年02月17日 星期四 18:09

Hoxide Ma hoxide_dirac at yahoo.com.cn
Thu Feb 17 18:09:50 HKT 2005

看manual:
weekday( ) 

Return the day of the week as an integer, where Monday
is 0 and Sunday is 6. For example, date(2002, 12,
4).weekday() == 2, a Wednesday. See also isoweekday().


strftime:
%w Weekday as a decimal number [0(Sunday),6]. 

看出区别了吗? 一个0是星期天, 一个0是星期一~~~
btw:manual是王道~~~

 --- hw_cg <hw_cg at huawei.com> 的正文:
> date.today().weekday()返回值的和
>
time.strftime("%w",time.gmtime())返回值不一致,是我理解错了?
> 请指教。  应该是星期四。
> 
> >>> import time
> >>> time.gmtime()
> (2005, 2, 17, 8, 29, 26, 3, 48, 0)
> >>> time.strftime("%w", time.gmtime())
> '4'
> >>> from datetime import date
> >>> date.today()
> datetime.date(2005, 2, 17)
> >>> date.today().weekday()
> 3
> 
> 
> ----- Original Message ----- 
> From: "hutuworm" <hutuworm at gmail.com>
> To: <python-chinese at lists.python.cn>
> Sent: Tuesday, February 08, 2005 9:44 AM
> Subject: Re: [python-chinese]
> 问一下,如何得到今天是星期 几
> 
> 
> 不管用什么方式?
> 
> from datetime import date
> date.today().weekday()
> 
> 
> On Tue, 8 Feb 2005 09:01:22 +0800 (CST), duotaiya
> duotaiya
> <duotaiya at yahoo.com.cn> wrote:
> > 我在python中通过gtk.calendar.get_date()
> > 可以得到当前的年,月,日
> >
>
但是我无法得到今天是星期几,请问如何实现(不管用什么方式)?
> > 
> > 我的日记本程序马上就要好了,就缺这个细节上的问题了
> > 
> > 哪位高人知道怎么得到的话,请回
> > 
> > 万分感谢!
> > 
> >
>
_________________________________________________________
> > Do You Yahoo!?
> > 150万曲MP3疯狂搜,带您闯入音乐殿堂
> > http://music.yisou.com/
> > 美女明星应有尽有,搜遍美图、艳图和酷图
> > http://image.yisou.com
> > 1G就是1000兆,雅虎电邮自助扩容!
> >
>
http://cn.rd.yahoo.com/mail_cn/tag/1g/*http://cn.mail.yahoo.com/event/mail_1g/
> > _______________________________________________
> > python-chinese list
> > python-chinese at lists.python.cn
> > http://python.cn/mailman/listinfo/python-chinese
> > 
> 
> 
> -- 
> In doG We Trust
> http://www.hutuworm.org
> _______________________________________________
> python-chinese list
> python-chinese at lists.python.cn
> http://python.cn/mailman/listinfo/python-chinese>
_______________________________________________
> python-chinese list
> python-chinese at lists.python.cn
> http://python.cn/mailman/listinfo/python-chinese
>  

_________________________________________________________
Do You Yahoo!?
150万曲MP3疯狂搜,带您闯入音乐殿堂
http://music.yisou.com/
美女明星应有尽有,搜遍美图、艳图和酷图
http://image.yisou.com
1G就是1000兆,雅虎电邮自助扩容!
http://cn.rd.yahoo.com/mail_cn/tag/1g/*http://cn.mail.yahoo.com/event/mail_1g/


[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

如下红色区域有误,请重新填写。

    你的回复:

    请 登录 后回复。还没有在Zeuux哲思注册吗?现在 注册 !

    Zeuux © 2025

    京ICP备05028076号