Skip to content

Commit

Permalink
Merge pull request #122 from cclauss/patch-2
Browse files Browse the repository at this point in the history
Use triple quoted strings in Python
  • Loading branch information
aman-raza authored Apr 28, 2021
2 parents 0c7ea9a + 3e768f3 commit b171938
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Python projects/Terminal Tricks/source-code-color.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@

#to get back to boring B&W: print(Styoe.RESET_ALL)

```
"""
All Variaton on Colors:
Fore: BLACK RED GREEN YELLOW BLUE MAGENTA CYAN WHITE RESET
Back: BLACK RED GREEN YELLOW BLUE MAGENTA CYAN WHITE RESET
Style: DIM NORMAL BRIGHT RESET_ALL
```
"""
4 changes: 2 additions & 2 deletions Python projects/Terminal Tricks/source-code-funky.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
word = pyfiglet.figlet_format("qxresearch",font="alphabet")
print(word)

```
"""
Output:
h
h
Expand All @@ -13,4 +13,4 @@
qq
```
"""

0 comments on commit b171938

Please sign in to comment.