-
Python question of the day Which line of code should replace '# Replace this line' in the following code snippet to get the result: P-y-t-h-o-n! w = 'Python' d = {'sep':'-', 'end':'!'} # Replace this lineprint(w, d)
print(*w, *d)
print(*w, **d)
print(**w, **d)
Explanation:In python, asterisk operator (*) is also used for unpacking. When used with a string, each character in the string becomes a separate object. With the double-asterisk operator (**), you unpack the dicttionary. Here we are passing the contents of the dictionary as arguments for the print function.
