Python Basics Exercises

Source: Internet
Author: User

Simple input-output interaction.

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

Enter a radius to calculate the area of the circle.

#简单输入输出num =input ("Please input a number:") print (num) #计算两数字之和num1 =input ("First:") Num2=input ("Second:") Sum=float ( NUM1) +float (num2) print ("resultone:%.2f"%sum) #利用一行代码实现print ("resulttwo:%.2f"% (float (input ("one:")) +float (Input ( ("A:"))) #输入半径, calculates the area of the Circle Pai=3.14r=input ("Please input R:") Area=float (R) **2*float (PAI) print ("resultthree:%.2f"%area )

  

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.