Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit a79f095

Browse files
committedOct 19, 2024·
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent e28e922 commit a79f095

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed
 

‎other/butterfly_pattern.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,5 @@ def print_butterfly(n): # defining the function
1010
print("*" * i) # for right wing of the butterfly
1111

1212

13-
n = int(
14-
input("Enter the value of n: ")
15-
) # asking the user to enter the value of n
13+
n = int(input("Enter the value of n: ")) # asking the user to enter the value of n
1614
print_butterfly(n)

0 commit comments

Comments
 (0)
Please sign in to comment.