Python Forum
convert multi list to one list !
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
convert multi list to one list !
#1
hello all ...
this is my code :
#qassam = raw_input()


def loop():
        
    for i in range(12):
        qan = "Key.f{}".format(i+1)
        print qan.split()
'''
    if qassam in qan:
        print "yes"

    else:
        print "no"
'''





loop()
output :

Output:
['Key.f1'] ['Key.f2'] ['Key.f3'] ['Key.f4'] ['Key.f5'] ['Key.f6'] ['Key.f7'] ['Key.f8'] ['Key.f9'] ['Key.f10'] ['Key.f11'] ['Key.f12']
i need to convert them to one list like [ 'Key.f1' , 'Key.f2' , 'Key.f3' ....ect ]
Reply


Messages In This Thread
convert multi list to one list ! - by evilcode1 - Nov-18-2018, 08:05 AM
RE: convert multi list to one list ! - by j.crater - Nov-18-2018, 08:46 AM
RE: convert multi list to one list ! - by evilcode1 - Nov-18-2018, 11:02 AM
RE: convert multi list to one list ! - by snippsat - Nov-18-2018, 09:49 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Strange behavior list of list mmhmjanssen 3 558 May-09-2024, 11:32 AM
Last Post: mmhmjanssen
  No matter what I do I get back "List indices must be integers or slices, not list" Radical 4 1,455 Sep-24-2023, 05:03 AM
Last Post: deanhystad
  Delete strings from a list to create a new only number list Dvdscot 8 1,883 May-01-2023, 09:06 PM
Last Post: deanhystad
  List all possibilities of a nested-list by flattened lists sparkt 1 1,074 Feb-23-2023, 02:21 PM
Last Post: sparkt
  convert string to float in list jacklee26 6 2,199 Feb-13-2023, 01:14 AM
Last Post: jacklee26
  convert a list to links Pir8Radio 3 1,223 Nov-28-2022, 01:52 PM
Last Post: Pir8Radio
  Сheck if an element from a list is in another list that contains a namedtuple elnk 8 2,120 Oct-26-2022, 04:03 PM
Last Post: deanhystad
  convert this List Comprehensions to loop jacklee26 8 1,765 Oct-21-2022, 04:25 PM
Last Post: deanhystad
Question Keyword to build list from list of objects? pfdjhfuys 3 1,765 Aug-06-2022, 11:39 PM
Last Post: Pedroski55
  Convert list to interger Clives 5 1,778 May-09-2022, 12:53 PM
Last Post: deanhystad

Forum Jump:

User Panel Messages

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