[perl-python] 20050114 if statement

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Xah Lee

    #1

    [perl-python] 20050114 if statement

    .. # here's an example of if statement in python.
    ..
    .. x=-1
    .. if x<0:
    .. print 'neg'
    .. elif x==0:
    .. print 'zero'
    .. elif x==1:
    .. print 'one'
    .. else:
    .. print 'other'
    ..
    .. # the elif can be omitted.
    .. ------------------------------
    .. # here's an example of if statement in perl
    ..
    .. $x=31;
    .. if ($x<0) {
    .. print 'neg'
    .. } elsif ($x==0) {
    .. print 'zero'
    .. } elsif ($x==1) {
    .. print 'one'
    .. } else {
    .. print 'other'
    .. }
    ..
    ..
    .. ---------------------------
    ..
    .. Note: this post is from the Perl-Python a-day mailing list at
    .. http://groups.yahoo.com/group/perl-python/
    .. to subscribe, send an email to perl-python-subscribe@yahoo groups.com
    .. if you are reading it on a web page, program examples may not run
    .. because html conversion often breaks the code.
    ..
    .. Xah
    .. xah@xahlee.org
    .. http://xahlee.org/PageTwo_dir/more.html

  • Reinhold Birkenfeld

    #2
    Re: [perl-python] 20050114 if statement

    Xah Lee wrote:[color=blue]
    > . # here's an example of if statement in python.
    > .
    > . x=-1
    > . if x<0:
    > . print 'neg'
    > . elif x==0:
    > . print 'zero'
    > . elif x==1:
    > . print 'one'
    > . else:
    > . print 'other'
    > .
    > . # the elif can be omitted.
    > . ------------------------------
    > . # here's an example of if statement in perl
    > .
    > . $x=31;
    > . if ($x<0) {
    > . print 'neg'
    > . } elsif ($x==0) {
    > . print 'zero'
    > . } elsif ($x==1) {
    > . print 'one'
    > . } else {
    > . print 'other'
    > . }[/color]

    Note that Perl's print doesn't append a newline to the printed string.

    Reinhold

    Comment

    Working...