Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
f-strings and termcolor
#5
(Sep-21-2019, 03:37 PM)newbieAuggie2019 Wrote: The f-string formatting seems to be the advisable choice since Python 3.6, so I want to be able to learn properly about them.
You should learn f-string without mixing in termcolor cprint().
cprint() takes different argument to function,not so much sense with all arguments to try to make it in one line.
>>> help(cprint)
Help on function cprint in module termcolor:

cprint(text, color=None, on_color=None, attrs=None, **kwargs)
    Print colorize text.
    
    It accepts arguments of print function.
The text part can manipulate with f-sting,the other arguments to make it all in line dos not make so much sense here.
import sys
from termcolor import colored, cprint

cprint('\nThis is ', end='')
cprint(f'{"dangerous".upper():~^20}', 'green', attrs=['reverse', 'blink'], end='')
cprint('... for my mental health!', end='\n\n')
[Image: S32I8x.png]
Reply


Messages In This Thread
f-strings and termcolor - by newbieAuggie2019 - Sep-21-2019, 03:37 PM
RE: f-strings and termcolor - by ndc85430 - Sep-21-2019, 03:42 PM
RE: f-strings and termcolor - by newbieAuggie2019 - Sep-21-2019, 04:34 PM
RE: f-strings and termcolor - by ThomasL - Sep-21-2019, 05:08 PM
RE: f-strings and termcolor - by newbieAuggie2019 - Sep-22-2019, 03:52 AM
RE: f-strings and termcolor - by snippsat - Sep-21-2019, 07:32 PM
RE: f-strings and termcolor - by santarosajoe - Jul-28-2020, 02:50 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Trying to understand strings and lists of strings Konstantin23 2 905 Aug-06-2023, 11:42 AM
Last Post: deanhystad
  Splitting strings in list of strings jesse68 3 1,892 Mar-02-2022, 05:15 PM
Last Post: DeaD_EyE
  Finding multiple strings between the two same strings Slither 1 2,602 Jun-05-2019, 09:02 PM
Last Post: Yoriz
  colorama/termcolor not returning coloured lines kapilan15 3 7,000 Jan-14-2019, 12:57 PM
Last Post: buran
  lists, strings, and byte strings Skaperen 2 4,324 Mar-02-2018, 02:12 AM
Last Post: Skaperen

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020