Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
.Format Help
#2
You are inserting the whole list each time. company_name is a list of two items, you want to print each item separately.
for each_name in company_name:
    print(f'{each_name}','Overvalued:',NAV)
Reply


Messages In This Thread
.Format Help - by AgileAVS - Mar-06-2020, 03:11 AM
RE: .Format Help - by michael1789 - Mar-06-2020, 03:23 AM

Forum Jump:

User Panel Messages

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