点击(此处)折叠或打开 set serveroutput on declare v_day varchar2(20); begin v_day := to_char(sysdate,'Day,HH24:MI'); dbms_output.put_line('Today is '||v_day); end; /
本文实例讲述了python显示生日是星期几的方法.分享给大家供大家参考.具体实现方法如下: ? 1 2 3 4 5 6 7 8 9 10 # find the day of the week of a given date # Python will trap impossible dates like (1900, 2, 29) # tested with Python24 vegaseat 01aug2005 from datetime import date # a typical b