Python time module ⌚

แชร์
ฝัง
  • เผยแพร่เมื่อ 21 ธ.ค. 2024

ความคิดเห็น • 66

  • @BroCodez
    @BroCodez  3 ปีที่แล้ว +30

    # ***************************************************************************
    import time
    # ***************************************************************************
    print(time.ctime(0)) # convert a time expressed in seconds since epoch to a readable string
    # epoch = when your computer thinks time began (reference point)
    print(time.time()) # return current seconds since epoch
    print(time.ctime(time.time())) # will get current time
    # ***************************************************************************
    # time.strftime(format, time_object) = formats a time_object to a string
    # time_object = time.localtime() # local time
    # time_object = time.gmtime() # UTC time
    # local_time = time.strftime("%B %d %Y %H:%M:%S", time_object)
    # print(local_time)
    # ***************************************************************************
    # time.strptime(time_string, format) = parses a string representing time/date and returns a struct_time object
    # time_string = "20 April, 2020"
    # time_object = time.strptime(time_string,"%d %B, %Y")
    # print(time_object)
    # ***************************************************************************
    # time.asctime(time_tuple) = accepts a time_object or a tuple up to 9 elements and returns a string
    # (year, month, day, hours, minutes, secs, day of the week, day of the year, dst)
    # time_tuple = (2020, 4, 20, 4, 20, 0, 0, 0, 0)
    # time_string = time.asctime(time_tuple)
    # print(time_string)
    # ***************************************************************************
    # time.asctime(time_tuple) = accepts a time_object or a tuple up to 9 elements and return seconds since epoch
    # (year, month, day, hours, minutes, secs, day of the week, day of the year, dst)
    # time_tuple = (2020, 4, 20, 4, 20, 0, 0, 0, 0)
    # time_string = time.mktime(time_tuple)
    # print(time_string)
    # ***************************************************************************

  • @farhan8834
    @farhan8834 2 ปีที่แล้ว +9

    The generosity I feel when I copy your neat and clean code with proper comments is too amazing, GREAT QUALITY CONTENT !!❤

  • @jhassee
    @jhassee 2 ปีที่แล้ว +9

    I paid for courses and didn't learn anything, this guy an maybe 4 others on TH-cam taught me the ins and outs of python. Paying is not always the answer as I've learned

    • @cr1azak
      @cr1azak ปีที่แล้ว +2

      Can you tell me names of the other 4 channels please.

    • @aureliano_37
      @aureliano_37 ปีที่แล้ว +3

      Who are the 4 others?

  • @carterjackson7460
    @carterjackson7460 3 ปีที่แล้ว +16

    perfect timing :)

    • @oldplagu3
      @oldplagu3 2 ปีที่แล้ว +1

      hahah good one

  • @kube4202
    @kube4202 3 ปีที่แล้ว +7

    bro, You helped me more than my teacher did, so much love

  • @lukascampidell9376
    @lukascampidell9376 10 หลายเดือนก่อน +1

    I don't use the time module that often, so this was very helpful!

  • @amf-z7x
    @amf-z7x ปีที่แล้ว +1

    الشرح ممتاز =)

  • @WhishoMH
    @WhishoMH ปีที่แล้ว +2

    this was actually uselfull, thanks for the eforts! you solved the complete misundertanding I had with that python documentation really. < 3

  • @SouravDash-di3vj
    @SouravDash-di3vj 5 หลายเดือนก่อน

    that's really help me bro to understand the basic things of time module keep going on like this

  • @lordrobertclive-vc5ld
    @lordrobertclive-vc5ld 3 หลายเดือนก่อน +2

    time() Returns the current time in seconds since the Epoch.
    sleep(seconds) Pauses execution for the given number of seconds.
    ctime([seconds]) Converts seconds since the Epoch to a string representing local time.
    strftime(format) Converts struct_time to a string according to the given format.
    localtime([secs]) Converts seconds to struct_time in local time.
    gmtime([secs]) Converts seconds to struct_time in UTC.
    mktime(t) Converts struct_time to seconds since the Epoch.
    perf_counter() High-resolution performance counter for measuring elapsed time.
    monotonic() Monotonic clock for time measurement.
    time_ns() Current time in nanoseconds since the Epoch.

  • @suman_sourav
    @suman_sourav ปีที่แล้ว

    liked it. and subscribed

  • @kellarin
    @kellarin 2 ปีที่แล้ว +2

    Why are our epoch times identical! I'm not even kidding. That's kind of spooky.

  • @ummanmemmedov
    @ummanmemmedov ปีที่แล้ว

    Excellent!

  • @lw9954
    @lw9954 2 ปีที่แล้ว +2

    TY BRO

  • @kindasus-pn2lr
    @kindasus-pn2lr 4 หลายเดือนก่อน

    🔥

  • @calsbergus
    @calsbergus ปีที่แล้ว

    Very good tutorial!

  • @ilordepic
    @ilordepic 2 ปีที่แล้ว

    another comment for the algorithm bro thanks a lot

  • @varunahlawat9013
    @varunahlawat9013 ปีที่แล้ว

    simply neat

  • @cristiucvladimir7909
    @cristiucvladimir7909 7 หลายเดือนก่อน +1

    Thanks bro!

  • @7even255
    @7even255 2 ปีที่แล้ว

    I love how your example for the tuple is 4/20 at 4:20am

  • @mohmedmohmed7399
    @mohmedmohmed7399 11 หลายเดือนก่อน

  • @Baekhyuneeslove
    @Baekhyuneeslove 7 หลายเดือนก่อน

    thanks for help

  • @bekturasanbekov1979
    @bekturasanbekov1979 ปีที่แล้ว

    thx 4 vid bro !

  • @piotrkopcewicz5227
    @piotrkopcewicz5227 2 ปีที่แล้ว

    god is time thx as always !!!!

  • @mendozosa
    @mendozosa 2 ปีที่แล้ว +1

    This tutorial has been the only one that help me with the time module cause the other codes didn't run at all, just gave me traceback errors, I'm trying to figure out the time and dates syntax

    • @mo-ab7315
      @mo-ab7315 ปีที่แล้ว

      hows the programming life ?

    • @shasvat0
      @shasvat0 ปีที่แล้ว

      @@mo-ab7315 you tell me

  • @rubenc4696
    @rubenc4696 7 หลายเดือนก่อน

    Thanks

  • @gingercholo
    @gingercholo 3 ปีที่แล้ว

    Yo bro this was great

  • @saikokun541
    @saikokun541 2 ปีที่แล้ว

    Awesome

  • @HussainAli-sb1dv
    @HussainAli-sb1dv ปีที่แล้ว

    love u

  • @beingzero7541
    @beingzero7541 2 ปีที่แล้ว

    Wow!

  • @onurdogan2390
    @onurdogan2390 3 ปีที่แล้ว

    yo amazing

  • @Amir_Plays_non_stop
    @Amir_Plays_non_stop 3 ปีที่แล้ว

    Nice

  • @ruhaprpl
    @ruhaprpl 2 ปีที่แล้ว

    Bro

  • @shaktibal5121
    @shaktibal5121 2 ปีที่แล้ว

    So much better than reading - thanks

  • @EissaAlahdul
    @EissaAlahdul 2 ปีที่แล้ว

    شكرا

  • @LimeSpeedCrystal
    @LimeSpeedCrystal 2 ปีที่แล้ว

    My chat with a bot now can tell the time! Thank you!

  • @SuperStarEevee
    @SuperStarEevee 2 ปีที่แล้ว

    Thank you!

  • @gustavoaponte1814
    @gustavoaponte1814 ปีที่แล้ว

    meow~! ^o^

  • @wmstram1
    @wmstram1 ปีที่แล้ว

    Watched it. Think Python could have made this a lot more elegant.

  • @chrisdavies6221
    @chrisdavies6221 2 ปีที่แล้ว +1

    Hey Bro, loving the tutorials.
    Can I ask what would be a use for referencing the epoch time?

  • @Adamelamine
    @Adamelamine 2 ปีที่แล้ว

    Drop a comment down below

  • @nukhbaiqbal7798
    @nukhbaiqbal7798 3 ปีที่แล้ว +1

    Hey, Is there some way to ask user to enter a line but within a time limit in python I mean for example there is only 10s to write a line by user and if he didn't write within 10s the program says TIME IS OVER.

  • @shasvat0
    @shasvat0 ปีที่แล้ว

    at 4:00

  • @TigerBros
    @TigerBros ปีที่แล้ว

    How can I fix the perf_counter it's giving high values that isn't true

  • @uuhju7004
    @uuhju7004 3 ปีที่แล้ว

    ty

  • @joyedet1363
    @joyedet1363 2 ปีที่แล้ว +1

    Mine rad Thu Jan 01:00:00 1970
    How about yours?🔥🤩

  • @murilosilvestre7736
    @murilosilvestre7736 3 ปีที่แล้ว +1

    our epoch time are only 5 hours away from each other :D

  • @provokator-provocateur7603
    @provokator-provocateur7603 3 ปีที่แล้ว +3

    mktime() ? mortal kombat time? Well that's my favorite time.

  • @hameeeed5992
    @hameeeed5992 ปีที่แล้ว

    :)

  • @jhassee
    @jhassee 2 ปีที่แล้ว

    so it is not apparent that bro smokes the devils lettuce hahahaha

  • @kyu2813
    @kyu2813 ปีที่แล้ว

    Is that how you pronounce epoch?? Lol I've been pronouncing it as ee-pock my whole life

  • @francisfigueroaiii5383
    @francisfigueroaiii5383 ปีที่แล้ว

    g

  • @aureliano_37
    @aureliano_37 ปีที่แล้ว

    Where's the code?

  • @Akxperto7
    @Akxperto7 ปีที่แล้ว

    currently daylight savings time is on and when i pass time.gmtime(), it shows tm_isdst=0. it shows the time accurate to minute but just an hour offto make up for the daylight savings time

  • @jamshidkushbaev2873
    @jamshidkushbaev2873 ปีที่แล้ว

    bro, You helped me more than my teacher did, so much love

  • @PlusUltraNerdO-O
    @PlusUltraNerdO-O 3 หลายเดือนก่อน

    Thanks

  • @snowhe7208
    @snowhe7208 2 ปีที่แล้ว

    Nice

  • @iliyasalimipor7565
    @iliyasalimipor7565 หลายเดือนก่อน

    Nice