Output method: First use the for statement to loop through all the numbers from 100 to 999, and assign it to the variable n; then decompose the variable n to obtain the ones digit k, tens digit j and hundreds digit i ; Finally, determine whether the cube sum of i, j and k numbers is equal to n. If so, just use the "print(n)" statement to output.
The operating environment of this tutorial: windows7 system, python3.7 version, DELL G3 computer
The so-called "daffodil number" refers to a three-dimensional A number of digits whose sum of cubes is equal to the number itself. For example: 153 is a "daffodil number" because 153=1 cubed + 5 cubed + 3 cubed.
python outputs the number of all daffodils
for n in range(100,1000): i = n // 100 j = n // 10 % 10 k = n % 10 if n == i ** 3 + j ** 3 + k ** 3: print (n)
Output:
153 370 371 407
Detailed explanation
Program analysis: using for Loop control 100-999 numbers, each number is decomposed into units, tens and hundreds.
First line:
for n in range(100,1000):
Because the narcissus number is a three-digit number, we loop through all the numbers from 100 to 999 and assign it to n
Second line:
i = n // 100
Divide 100 by n, and what you get is actually a three-digit hundred digit. Assign it to i
Third line:
j = n // 10 % 10
Divide 10 by n, and you will get a two-digit number consisting of hundreds and tens. Then divide this number by 10 to find the remainder. You will get our tens number, and assign it to j
The fourth line:
k = n % 10
Divide n by 10 and find the remainder. What you get is the single digit number of n. Assign it to k. At this time, the hundreds, tens and tens digits of the three-digit n are We have already obtained the single digits and assigned them to i, j, k respectively
The fifth line:
if n == i ** 3 + j ** 3 + k ** 3:
Judgment: If n is equal to the cube of its hundreds digits and ten digits If the cube is a single digit cube, then it is the narcissus number. At this time, print out the n that meets the conditions, otherwise it will enter the next loop
[Related recommendations: Python3 video tutorial 】
The above is the detailed content of How to output the number of all daffodils in python. For more information, please follow other related articles on the PHP Chinese website!

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于Seaborn的相关问题,包括了数据可视化处理的散点图、折线图、条形图等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于进程池与进程锁的相关问题,包括进程池的创建模块,进程池函数等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于简历筛选的相关问题,包括了定义 ReadDoc 类用以读取 word 文件以及定义 search_word 函数用以筛选的相关内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于数据类型之字符串、数字的相关问题,下面一起来看一下,希望对大家有帮助。

VS Code的确是一款非常热门、有强大用户基础的一款开发工具。本文给大家介绍一下10款高效、好用的插件,能够让原本单薄的VS Code如虎添翼,开发效率顿时提升到一个新的阶段。

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于numpy模块的相关问题,Numpy是Numerical Python extensions的缩写,字面意思是Python数值计算扩展,下面一起来看一下,希望对大家有帮助。

pythn的中文意思是巨蟒、蟒蛇。1989年圣诞节期间,Guido van Rossum在家闲的没事干,为了跟朋友庆祝圣诞节,决定发明一种全新的脚本语言。他很喜欢一个肥皂剧叫Monty Python,所以便把这门语言叫做python。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Atom editor mac version download
The most popular open source editor

Dreamweaver Mac version
Visual web development tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 English version
Recommended: Win version, supports code prompts!
