Python Forum
another way to make Python easier
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
another way to make Python easier
#2
It doesn't work, the grammar becomes ambiguous.
if a:
   ...
if b:
   ...
elif c:
   ...
cannot be equivalent to
if a:
   ...
elif b:
   ...
elif c:
   ...
Reply


Messages In This Thread
another way to make Python easier - by Skaperen - Nov-27-2019, 08:18 PM
RE: another way to make Python easier - by Gribouillis - Nov-27-2019, 11:24 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  which would be easier to translate to Python? Skaperen 2 2,840 Oct-28-2017, 05:06 AM
Last Post: Skaperen

Forum Jump:

User Panel Messages

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