Python Forum
f-string capability in a function
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
f-string capability in a function
#2
That is an interesting puzzle. After a lot of tries I succeeded in producing a working example.
>>> string_from_file = 'f"Printing {var1}"'
>>> string_from_file
'f"Printing {var1}"'
>>> var1 = "content of variable"
>>> exec('print(eval(string_from_file))')
Printing content of variable
>>> 
Although this works I would prefer using string.format(). But I am sure you thought about that already.
Reply


Messages In This Thread
f-string capability in a function - by Skaperen - Dec-24-2019, 06:10 AM
RE: f-string capability in a function - by ibreeden - Dec-24-2019, 12:46 PM
RE: f-string capability in a function - by Skaperen - Dec-24-2019, 08:52 PM
RE: f-string capability in a function - by DeaD_EyE - Dec-24-2019, 03:31 PM
RE: f-string capability in a function - by snippsat - Dec-24-2019, 08:31 PM
RE: f-string capability in a function - by snippsat - Dec-24-2019, 09:14 PM
RE: f-string capability in a function - by Skaperen - Dec-25-2019, 02:33 AM
RE: f-string capability in a function - by snippsat - Dec-25-2019, 09:22 PM
RE: f-string capability in a function - by Skaperen - Dec-26-2019, 03:19 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  passing a string to a function to be a f-string Skaperen 3 4,298 Nov-06-2020, 06:14 AM
Last Post: Gribouillis
  a function to look for dates in a string Skaperen 6 4,241 May-09-2020, 11:03 PM
Last Post: Skaperen
  function t split a string Skaperen 2 1,981 Apr-23-2019, 06:03 PM
Last Post: Skaperen

Forum Jump:

User Panel Messages

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