Python Basics Exercises

Source: Internet
Author: User
  1. Simple input-output interaction.
  2. The user enters two numbers and calculates and outputs the sum of two digits: (try to do this with just one line of code)
  3. Enter a radius to calculate the area of the circle.

1. For:

Input (' Please input your name: ')

Please input your name:jack
>>>

2. A: Print (' Two sum of%.f '% (float (input (' Enter the first number ') +float (Input (' Enter second Number ')))

Enter first number 8
Enter a second number 2
The sum of the two numbers is 10
>>>

3. For:

R=input (' Please enter radius of circle ')
Print (' Circle ' area:%.2f '% ((float (r) **2) *3.14))

Please enter the radius of the Circle 8
The area of the circle is: 200.96
>>>

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.