Python Basics Exercises

Source: Internet
Author: User

1. Simple input/output interaction
#输入 >>> name=" pig "print("hello,%s. "%name") #输出
Hello, Pig.
2. The user enters two numbers, calculates and outputs the sum of two digits: (try to do this with just one line of code)

#输入数字
M=input ("Please enter first number:")
N=input ("Please enter a second number:")

#求和公式
Sum=int (m) +int (n)

#结果
Print ("Sum of two numbers:%.2f"%sum)

One line of code

Print ("Sum of two numbers:%.2f"% (int (input ("first number:")) +int (Input ("second number:")))

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

pai=3.1415
R=input ("Please enter radius:")
Mianji=float (float (r) **2*pai)
Print ("Area of the Circle:%.2f"%mianji)

Python Basics Exercises

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.