{"id":22604,"date":"2021-09-27T08:33:40","date_gmt":"2021-09-27T03:03:40","guid":{"rendered":"https:\/\/python-programs.com\/?p=22604"},"modified":"2021-11-22T18:35:40","modified_gmt":"2021-11-22T13:05:40","slug":"python-program-to-print-cube-number-series-1-8-27-64-n","status":"publish","type":"post","link":"https:\/\/python-programs.com\/python-program-to-print-cube-number-series-1-8-27-64-n\/","title":{"rendered":"Python Program To Print Cube Number Series 1 8 27 64…N"},"content":{"rendered":"

In the previous article, we have discussed Python Program to Print Series 6, 9, 14, 21, 30, 41, 54 … N<\/a>
\nGiven a number N and the task is to print the cube number series (1 8 27 64…N)<\/strong> till the given number N in Python.<\/p>\n

Cube number:<\/strong><\/p>\n

A cube number is a number that has been multiplied by itself three times. This is also known as ‘a number cubed.’ Cubed is represented by the symbol \u00b3.<\/p>\n

For example :<\/p>\n

The cube number of 3= 3\u00b3 =3*3*3 = 27.<\/p>\n

Examples:<\/strong><\/p>\n

Example1:<\/strong><\/p>\n

Input:<\/strong><\/p>\n

Given Number (Limit) = 8<\/pre>\n

Output:<\/strong><\/p>\n

The above cube series till the given number{ 8 } is :\r\n1 8 27 64 125 216 343 512<\/pre>\n

Example2:<\/strong><\/p>\n

Input:<\/strong><\/p>\n

Given Number (Limit) = 6<\/pre>\n

Output:<\/strong><\/p>\n

The above cube series till the given number{ 6 } is :\r\n1 8 27 64 125 216<\/pre>\n

Program To Print Cube Number Series 1 8 27 64…N in Python<\/h2>\n

Below are the ways to print the cube number series (1 8 27 64…N)<\/strong> till the given number N in Python:<\/p>\n