Answer the question
In order to leave comments, you need to log in
How to change the name of a site bookmark?
Vskm hello =) I hosted the site on Gino, added it to my bookmarks and instead of the name it says: "The domain is registered through Gino". How do I keep the name of my site when I save a bookmark?
Answer the question
In order to leave comments, you need to log in
I don’t understand python, but judging by the code, if a number is a multiple of 3 and 5 at the same time, you sum it up twice
I didn’t understand, but you did something completely tricky with the translation of a number into a string.
The multiplicity of a number can be found through modulo division (operator %)
n % 3 == 0
n % 5 == 0
result = 0
for n in range(1000):
if n % 3 == 0 or n % 5 == 0:
result += n
<meta name ="title" content="Заголовок страницы" >
It's in the header.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question