What's new

Python Already answered

BrigthWin

Forum Veteran
Elite
Joined
Jul 21, 2020
Posts
1,638
Reaction
1,768
Points
650
Pa help po mga paps pano sagutan to dapat yung maging product po is yung binilugan kopa sa ibaba salamat po in advance
 
Last edited:
Yung code po sa itaas yung given kailangan po dapat maging product niya is yung may bilog po sa picture
Python:
d1 = {
"Person1": {
"name": "Eliser",
"hobbies":["a", "b","c"]
},
"Person2":{
"name": "Pogi",
"hobbies":["d", "e","f"]
}
}

# LOOPING
for key, value in d1.items():
    print(key)
    print("name:", value["name"])
    print("hobbies:", "".join(value["hobbies"]))
 
Python:
d1 = {
"Person1": {
"name": "Eliser",
"hobbies":["a", "b","c"]
},
"Person2":{
"name": "Pogi",
"hobbies":["d", "e","f"]
}
}

# LOOPING
for key, value in d1.items():
    print(key)
    print("name:", value["name"])
    print("hobbies:", "".join(value["hobbies"]))
Maraming salamat po
 

Similar threads

Back
Top