Python Pendulum Comparison














































Python Pendulum Comparison



                                       COmparison

Simple comparison is offered up via the basic operators. Remember that the comparison is made in the UTC timezone so things aren't always as they seem.

    #CODE


import pendulum
>>> first = pendulum.datetime(2012, 9, 5, 23, 26, 11, 0, tz='America/Toronto')
>>> second = pendulum.datetime(2012, 9, 5, 20, 26, 11, 0, tz='America/Vancouver')
>>> first.to_datetime_string()
'2012-09-05 23:26:11'
>>> first.timezone_name
'America/Toronto'
>>> second.to_datetime_string()
'2012-09-05 20:26:11'
>>> second.timezone_name
'America/Vancouver'
>>> first == second #by comparing
True
>>> first != second
False
>>> first > second
False
>>> first >= second
True
>>> first < second
False
>>> first <= second
True
>>> first = first.on(2012, 1, 1).at(0, 0, 0)
>>> second = second.on(2012, 1, 1).at(0, 0, 0)
# tz is still America/Vancouver for second
>>> first == second
False
>>> first != second
True
>>> first > second
False
>>> first >= second
False
>>> first < second
True
>>> first <= second
True






More Articles of Anmol Agrawal:

Name Views Likes
Python Pendulum Why to use Pendulum 161 0
Python Pendulum Limitations in DJANGO 240 0
Python Pendulum Limitations in MYSQLCLIENT 160 0
Python Pendulum Limitations in SQLITE3 171 0
Python Pendulum Testing 2 165 0
Python Pendulum Testing 198 0
Python Pendulum Range 199 0
Python Pendulum Period 3 172 0
Python Pendulum Period 2 165 0
Python Pendulum Period 166 0
Python Pendulum Properties and Duration Methods 2 172 0
Python Pendulum Properties and Duration Methods 170 0
Python Pendulum Instantiation 169 0
Python Pendulum Duration 157 0
Python Pendulum TImezone usage 2 162 0
Python Pendulum Timezone usage 178 0
Python Pendulum Switching Timezones 160 0
Python Pendulum Shifting Time to Transition 178 0
Python Pendulum Normalization 177 0
Python Pendulum Modifiers 2 178 0
Python Pendulum Modifiers 174 0
Python Pendulum Difference for Humans 2 202 0
Python Pendulum Difference for Humans 196 0
Python Pendulum Difference 226 0
Python pendulum Substraction 189 0
Pyhton pendulum Addition 192 0
Python pendulum Comapaison part 2 197 0
Python Pendulum Comparison 200 0
Python Pendulum Localized Formats and Escaping characteristics 182 0
Python pendulum Tokens 181 0
Python pendulum Formatter 190 0
Python pendulum Common Formats 189 0
Python pendulum String Formatting 199 0
Python pendulum Fluent helpers 2 173 0
Python pendulum Fluent helpers 170 0
Python pendulum Attributes and Properties 197 0
Python pendulum Localization 210 118
Python pendulum parsing 2 203 23
Python pendulum Parsing 1 210 61
Python pendulum 2 231 57
Python pendulum basics 204 9
python library Pendulum 206 33
python winsound.SND_PURGE and winsound.SND_WAIT 247 5
Python winsound.SND_NOSTOP 256 1
Python winsound.SND_NODEFAULT 219 1
python winsound.SND_ASYNC not excecuting problem 224 2
Python winsound functions 274 3
python winsound.SND_ALIAS 258 1
Python winsound.MessageBeep() 391 1
Python winsound basic introduction 358 1

Comments