Beginner Python Tutorial 56 - Range Sum

preview_player
Показать описание


~~~~~~~~~~~~~~~ CONNECT ~~~~~~~~~~~~~~~

~~~~~~~~~~~~~~ SUPPORT ME ~~~~~~~~~~~~~~

🅑 Bitcoin - 3HnF1SWTzo1dCU7RwFLhgk7SYiVfV37Pbq
🅔 Eth - 0x350139af84b60d075a3a0379716040b63f6D3853
Рекомендации по теме
Комментарии
Автор

Phew you saved my life you are my hero

vdvqepc
Автор

you are GOD SENT!!! This helped me correct my code and turn in an assignment now I can go to sleep.

DapperInTech
Автор

why if you put,

for i in range (10):
print(i, end = " ")
print(sum(range(10)))


45 will be in the same line as the rest of the print 0 1 2 3 4 5 6 7 8 9, like this

0 1 2 3 4 5 6 7 8 9 45
why is all in the same line and 45 is not in a different line as it is a different print??

eduardomarinho