Skip to content

Commit

Permalink
update : readme updated (Sepand's comment.).
Browse files Browse the repository at this point in the history
  • Loading branch information
sadrasabouri committed Oct 28, 2024
1 parent 695dd99 commit f7e0257
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,9 @@ Filename: test.txt
* Note2 : Use `NON_ASCII_FONTS` to access all Non-ASCII fonts name list (new in `Version 4.4`)
* Note3 : Use `ASCII_FONTS` to access all ASCII fonts name list (new in `Version 5.7`)

### 4. lprint
## Line

### 1. lprint

This function prints a grid (`length` by `height`) of any given character.
```pycon
Expand All @@ -355,6 +357,18 @@ This function prints a grid (`length` by `height`) of any given character.
* Note1: This feature has been added since `Version 6.4`.
* Note2: The default values are `length=15`, `height=1`, `char='#'`.

### 2. line

This function return a grid (`length` by `height`) of any given character as `str` in and raise `artError` in exception.
```pycon
>>> line(length=15, height=2, char="*")
'***************\n***************'
```

* Note1: This feature has been added since `Version 6.4`.
* Note2: The default values are `length=15`, `height=1`, `char='#'`.


### Decoration

⚠️ Some environments don't support all decorations
Expand Down

0 comments on commit f7e0257

Please sign in to comment.