Найти - Пользователи
Полная версия: Создание пирамидки из "*"
Начало » Python для новичков » Создание пирамидки из "*"
1
qut
Помогите понять, что означает строка 5?
 h = int(input("Введите высоту пирамиды: "))
line,c,amount = '','',1
black = ' '*h
for i in range(h):
    black = black[0:h-i]
    c = ''
    
    for j in range(amount):
        c += "*"
        
    line += black+c+'\n'
    amount += 2
print (line)
xam1816
 black[0:h-i]
это срез строки
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Powered by DjangoBB