Python Forum
Thread Rating:
  • 2 Vote(s) - 3.5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
What does this mean?
#4
This is what I mean:

>>> bool(0)
False
>>> if 0:
...     print('True')
...
>>> bool(None)
False
>>> if None:
...     print('True')
...
>>> bool([])
False
>>> if []:
...     print('True')
...
>>>
"As they say in Mexico 'dosvidaniya'. That makes two vidaniyas."
https://freedns.afraid.org
Reply


Messages In This Thread
What does this mean? - by Giulio - Sep-06-2017, 03:42 PM
RE: What does this mean? - by wavic - Sep-06-2017, 04:17 PM
RE: What does this mean? - by Mekire - Sep-06-2017, 04:32 PM
RE: What does this mean? - by wavic - Sep-06-2017, 07:20 PM
RE: What does this mean? - by Mekire - Sep-06-2017, 07:32 PM
RE: What does this mean? - by wavic - Sep-06-2017, 07:44 PM

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020