Я хочу начать с того, что я абсолютный новичок и был в моей программе только 2 месяца. У меня проблемы с отображением вывода цикла for так, как мне нужно для проекта. Я ищу все свои учебники и лекции и не могу понять, как это сделать. Любая помощь будет оценена.
Я скопирую и вставлю функцию и вывод. Имейте в виду, что этот файл предназначен только для функции и поэтому не содержит входных данных, но у меня есть это.
Вот то, что у меня есть, и ниже я перечислю, как это должно получиться.
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: 81
The 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