Python Basics Exercises

Source: Internet
Author: User

1. Simple input/output interaction.

Number=input (' Please enter a number:')print(numbers)

2. The user enters two numbers, calculates and outputs the sum of two digits: (try to do this with just one line of code)

#user Input numberFIR = input ('Enter the first number:') SEC= Input ('Enter a second number:')#sumsum = float (FIR) +Float (sec)#Show Calculation Results##第一种方法Print('the number {0} and {1} Add results to: {2}'. Format (fir, sec, sum)#The second method ofPrint('the result of adding two numbers is:', float (FIR) + float (sec))

3. Enter a radius to calculate the area of the circle.

a=3.14#  user input number r = input (' radius of input circle:')#  Find Area area = a*r*r#  Displays the calculated result Print(' the radius of this circle is:' , area)

Python Basics Exercises

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.