Horje
deeply nested loops Code Example
deeply nested loops
n=int(input("enter size : "))
for row in range(0,n):
    for col in range(0,n):
        if row == 0 or col == 0 or row==n-col-1:
            print("*", end="")
        else:
            print(end=" ")
    print()
deeply nested loops
enter size : 6
******
*   *
*  *
* *
**
*




Whatever

Related
adb phone call command Code Example adb phone call command Code Example
google voice over generator Code Example google voice over generator Code Example
Temporary password has expired and must be reset by an administrator Code Example Temporary password has expired and must be reset by an administrator Code Example
Automatic wallet connect Code Example Automatic wallet connect Code Example
gamma correction Code Example gamma correction Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7