Example of how to calculate the sum of series in Python: python Series

Source: Internet
Author: User

Example of how to calculate the sum of series in Python: python Series

This article describes how to calculate the number of series and in Python. We will share this with you for your reference. The details are as follows:

Problem:

Input

There are multiple groups of input data. Each group occupies one row and consists of two integers n (n <10000) and m (m <1000). The meanings of n and m are as described above.

Output

For each group of input data, the sum of the output columns, each test instance occupies a row, requires that the precision be kept with 2 decimal places.

Sample Input

81 4
2 2

Sample output

94.73
3.41

Implementation Code:

Import mathwhile 1: x = raw_input () x = list (x. split ("") data = [int (x [0]),] nums = int (x [1]) for I in range (nums-1): data. append (math. sqrt (data [-1]) print '%. 2f '% sum (data)

The above statement is a bit wordy.

Import mathwhile 1: x = map (int, raw_input (). split ("") data = [int (x [0]),] nums = int (x [1]) for I in range (nums-1): data. append (math. sqrt (data [-1]) print '%. 2f '% sum (data)

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.