Skip to content
This repository has been archived by the owner on Aug 13, 2022. It is now read-only.

Commit

Permalink
Added support for custom dividers
Browse files Browse the repository at this point in the history
  • Loading branch information
RDIL committed Sep 25, 2018
1 parent 2e75d3d commit 07a7b27
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions area4/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
divider2 = str("________________________")
divider3 = str("........................")
divider4 = str("⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛")
custom_div = str("")

# Functions:
def div1():
Expand All @@ -26,6 +27,9 @@ def div3():
def div4():
print(divider4)

def customdiv():
print(custom_div)

def area4info():
print("Name:", name)
print("Author:", author, "\nAuthor Email:", author_email)
Expand Down

0 comments on commit 07a7b27

Please sign in to comment.