Beginning Python From Novice to Professional (5)-conditions and loops

Source: Internet
Author: User

Beginning Python From Novice to Professional (5)-conditions and loops

Conditions and loops

Conditional execution:

name = raw_input('What is your name? ')if name.endswith('Gumby'):print 'Hello, Mr.Gumby'
What is your name? GumbyHello, Mr.Gumby
name = raw_input('What is your name? ')if name.endswith('Gumby'):print 'Hello, Mr.Gumby'else:print 'Hello, stranger'
Multiple conditions:

num = input('Enter a number: ')if num > 0:print 'The number is positive'elif num < 0:print 'The number is negative'else:print 'The number is zero'
Enter a number: 5The number is positive
Enter a number: -1The number is negative
Enter a number: 0The number is zero
While loop:

x = 1while x<=100:print xx+=1
For Loop:

numbers = [0,1,2,3,4,5,6,7,8,9]for number in numbers:print number
0123456789
Else in the Loop:

For n in range (99,81,-1): root = sqrt (n) if root = int (root): print nbreakelse: # Run print "Didn't find it only when break is not called! "

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.