python for loop循环程序语句_python-带for循环的格式化输出_for-loop_酷徒编程知识库...
def perfect_square(num):
for number in range(1, num, 1):
square = number ** 2
# print(square, end='')
print("the perfect squares from {} are: {}".format(num, square))
上面的輸出Enter a positive integer: 10
the perfect squares from 10 are: 81
第二次嘗試def perfect_square(num):
import math
for number in range(1, num, 1):
square = number ** 2
# print(square, end='')
print("the perfect squares from {} are: {}".format(num, square))
上面的輸出Enter a positive integer: 10
the perfect squares from 10 are: 1
the perfect squares from 10 are: 4
the perfect squares from 10 are: 9
the perfect squares from 10 are: 16
the perfect squares from 10 are: 25
the perfect squares from 10 are: 36
the perfect squares from 10 are: 49
the perfect squares from 10 are: 64
the perfect squares from 10 are: 81The required output needs to look like this
Enter a positive integer: 10
The perfect squares for the number 10 are: 1, 4, 9
import math
for number in range(1, num):
if number ** .05 % 1 == 0:
print("the perfect squares from {} are: {}".format(num, number))
輸出Enter a positive integer: 10
the perfect squares from 10 are: 1
總結(jié)
以上是生活随笔為你收集整理的python for loop循环程序语句_python-带for循环的格式化输出_for-loop_酷徒编程知识库...的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: python编码转换语句_好程序员Pyt
- 下一篇: websocket python爬虫_p