Computer Science, asked by ashrithdevara9407, 10 months ago

Given the following dictionary declaration: Myd={„empno‟:1,‟name‟:‟Vikrant‟,‟salary‟:50000} write python statement to print the message: Vikrant@50000

Answers

Answered by AndyCruz
11

Answer:

Myd={'empno':1,'name':'Vikrant','salary':50000}

print(f"{Myd['name']}@{Myd['salary']}")

Explanation:

Similar questions