`

format time

阅读更多

 

ri Time.strftime 
 
------------------------------------------------------- Time#strftime
                time.strftime( string ) => string
---------------------------------------------------------------------
    Formats _time_ according to the directives in the given format
    string. Any text not listed as a directive will be passed through
    to the output string.

    Format meaning:

      %a - The abbreviated weekday name ("Sun")
      %A - The full weekday name ("Sunday")
      %b - The abbreviated month name ("Jan")
      %B - The full month name ("January")
      %c - The preferred local data and time representation
      %d - Day of the month (01..31)
      %H - Hour of the day, 24-hour clock (00..23)
      %I - Hour of the day, 12-hour clock (01..12)
      %j - Day of the year (001..366)
      %m - Month of the year (01..12)
      %M - Minute of the hour (00..59)
      %p - Meridian indicator ("AM" or "PM")
      %S - Second of the minute (00..60)
      %U - Week number of the current year, starting with the first Sunday as the first
              day of the first week (00..53)
      %W - Week number of the current year, starting with the first Monday as the first
              day of the first week (00..53)
      %w - Day of the week (Sunday is 0, 0..6)
      %x - Preferred representation for the date alone, no time
      %X - Preferred representation for the time alone, no date
      %y - Year without a century (00..99)
      %Y - Year with century
      %Z - Time zone name
      %% - Literal "%" character

       t = Time.now
       t.strftime("Printed on %m/%d/%Y")  #=> "Printed on 04/09/2003"
       t.strftime("at %I:%M%p)            #=> "at 08:56AM"
 

 

分享到:
评论

相关推荐

    Quick Time File Format

    # Quick Time File Format (QTFF): A Comprehensive Overview ## Introduction QuickTime File Format (QTFF), also commonly referred to as the MOV file format, is a multimedia container format developed ...

    python基础——time模块和datetime模块.pdf

    time 模块中时间表现的格式主要有三种:timestamp 时间戳、struct_time 时间元组和 format time 格式化时间。 * timestamp 时间戳:是从 1970 年 1 月 1 日 00:00:00 开始按秒计算的偏移量。 * struct_time 时间...

    前端项目-d3-time-format.zip

    在这个名为"前端项目-d3-time-format.zip"的压缩包中,包含的是D3.js库的一个特定模块——d3-time-format,这是一个基于javascript的时间格式化和解析程序,受到了C语言中的strftime和strptime函数的启发。...

    时间格式转化图表.docx

    首先,`time`模块是Python内建的模块,它主要包含了时间戳、struct_time和format time这三种时间格式。时间戳(timestamp)是一个从1970年1月1日00:00:00(UTC/GMT的午夜)开始按秒计算的偏移量。struct_time则是一...

    format_date_time_format_date_Time_vb6_

    标题"format_date_time_format_date_Time_vb6_"暗示了我们讨论的核心内容是关于VB6中如何处理日期和时间格式化的知识点。描述"makes an date_time_string for saving files"则表明这个功能常用于生成适合存储在...

    format_date_time_underline_format_date_underline_Time_vb6_

    `format_date_time_underline_format_date_underline_Time_vb6_` 这个标题暗示我们讨论的是如何在VB6中格式化日期和时间,并在其中插入下划线作为分隔符,以便生成适合作为文件名的字符串。 在VB6中,我们可以使用...

    Date.time.Format.js 常用日期处理公共方法

    Date.prototype.Format 时间为刚刚、几分钟前、几小时前、几天前·· yyyy-MM-dd hh:mm:ss

    波形图表系统时间初始化设置_labview图标系统时间_

    1. **时间与日期函数**:LabVIEW提供了丰富的函数库来处理时间与日期,如`Get System Time`和`Format Time String`。`Get System Time`能获取当前系统的毫秒级时间戳,而`Format Time String`可以将这个时间戳转换为...

    前端开源库-time_format

    "time_format" 是一个专为前端设计的开源库,致力于简化这个过程,提供了一个简单易用的工具来处理时间格式。下面我们将详细探讨这个库的核心功能、使用方法以及它在实际开发中的应用。 首先,`time_format` 库的...

    Python库 | timedeltafmt-0.1.0.tar.gz

    formatted_time = format(time_diff) print(formatted_time) # 输出:1天24小时34分56秒 ``` `timedeltafmt`库可能还提供了一些自定义选项,比如调整时间单位的优先级,或者设置特定的单位分隔符。这些细节可以在...

    QuickTime Format

    QuickTime File Format Specification QuickTime File Format Specification QuickTime File Format Specification

    labview计算时间输入控件与当前时间的差值,并以HH:MM:SS形式的字符串显示

    - 输出格式设置:使用“创建日期时间格式”函数(Create Date-Time Format)创建“HH:MM:SS”的格式字符串。 5. **字符串显示**:最后,使用“时间格式化”函数将格式化后的时间差输出为字符串,然后通过字符串...

    将时间导入excel_labview_

    LabVIEW提供了多种函数来创建、操作和格式化时间值,例如`Get System Time.vi`用于获取当前系统时间,`Format Time String.vi`用于将时间值转化为可读的日期和时间字符串。 在实现将时间导入Excel的过程中,我们...

    LabVIEWlv时间换算.rar

    4. **时间函数**:LabVIEW包含丰富的内置函数用于时间处理,如Get Date/Time函数获取当前日期和时间,Add Time函数用于增加或减去时间间隔,Format Time函数将时间值转化为易读的字符串格式。 5. **时间计算**:...

    华工IBM大型机CISC实验1

    - `000600 EXEC CICS FORMAT TIME ABS TIME(TSTAMP)`:调用CICS命令将获取的时间格式化。 - `000700 TIME SEP`:设置时间分隔符。 - `000800 TIME (OUTTIME)`:将格式化后的时间存储到OUTTIME变量中。 - `000900...

    format用法.txt

    - **示例**:`FORMAT(Now(), "MediumTime")` 输出结果类似于 `03:08 PM`。 ##### 7. ShortTime - **描述**:短时间格式,通常是24小时制。 - **示例**:`FORMAT(Now(), "ShortTime")` 输出结果类似于 `15:06`。 ##...

    @JsonFormat的使用jackson-annotations

    此外,`@JsonFormat`还支持时区设置,例如`timezone = "Asia/Shanghai"`,这将在序列化和反序列化时使用指定时区。 除了日期时间,`@JsonFormat`还可以用于控制数字的输出格式。例如,你可以设定小数点后保留的位数...

    第五章非平稳时间序列分析的程序

    format time year4.; dif1=dif(milk); dif1_12=dif12(dif1); cards; 589 561 ... proc gplot; plot milk*year dif1*year dif1_12*year; symbol v=star c=red i=join; run; 这些程序示例展示了如何使用SAS程序对时间...

    LabView图形化编程语言之lv时间换算.zip

    例如,`Format Time String`函数可以将时间戳格式化为易于读取的日期和时间字符串。 5. **时间循环**:在测试和测量应用中,时间控制至关重要。LabView的`For Loop`和`While Loop`可以配合时间函数实现定时任务,如...

    Format Strings

    `Standard Date and Time Format Strings_files`、`Standard Numeric Format Strings_files`、`Custom Date and Time Format Strings_files`和`Custom Numeric Format Strings_files`这些文件夹可能包含支持上述网页...

Global site tag (gtag.js) - Google Analytics