Python Forum
New to Coding, help please?!
Thread Rating:
  • 1 Vote(s) - 3 Average
  • 1
  • 2
  • 3
  • 4
  • 5
New to Coding, help please?!
#7
age == 1 or age == 2:
There are 2 possible shorter versions
age in (1,2)
or
1 <= age <= 2
Test everything in a Python shell (iPython, Azure Notebook, etc.)
  • Someone gave you an advice you liked? Test it - maybe the advice was actually bad.
  • Someone gave you an advice you think is bad? Test it before arguing - maybe it was good.
  • You posted a claim that something you did not test works? Be prepared to eat your hat.
Reply


Messages In This Thread
New to Coding, help please?! - by zepel - Apr-20-2017, 01:20 AM
RE: New to Coding, help please?! - by sdcaliber - Apr-20-2017, 01:49 AM
RE: New to Coding, help please?! - by zepel - Apr-20-2017, 03:29 AM
RE: New to Coding, help please?! - by sdcaliber - Apr-20-2017, 04:01 AM
RE: New to Coding, help please?! - by sdcaliber - Apr-20-2017, 04:18 AM
RE: New to Coding, help please?! - by zepel - Apr-20-2017, 04:15 AM
RE: New to Coding, help please?! - by volcano63 - Apr-20-2017, 08:33 AM

Forum Jump:

User Panel Messages

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