Python Forum
Can I retrieve 2 values in a for ?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Can I retrieve 2 values in a for ?
#1
I have a list of values im looping through with an for x, and this is the x value

{'value_exc_vat': 16.67, 'value_inc_vat': 17.5035, 'valid_from': '2023-11-06T13:00:00Z', 'valid_to': '2023-11-06T13:30:00Z', 'payment_method': None}

I then run a for y in x and get the following

value_exc_vat
value_inc_vat
valid_from
valid_to
payment_method

Which is fine, but what I also want to do is get the numeric and text values e.g. for 'value_exc_vat' 16.67 and 'valid_from' 2023-11-06T13:00:00Z

Im certain its easy, but its totally alluding me.

Many thanks in advance
Reply


Messages In This Thread
Can I retrieve 2 values in a for ? - by Kakalok - Nov-06-2023, 09:57 PM
RE: Can I retrieve 2 values in a for ? - by Kakalok - Nov-06-2023, 10:32 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  'soup.findAll()' help - Want to retrieve multiple attribute values MattRHope 1 18,575 Jul-29-2017, 11:35 PM
Last Post: metulburr

Forum Jump:

User Panel Messages

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