假设我有一个字典跟函数
想要把字典的key跟value代入函数中
例如
keyvalue = dict(macaron = coffe, brownie = milktea, sandwich = blacktea)
def teaTime(dessert, drink):
print('My dessert is ', dessert, ', drink is ', drink)
key 要代入dessert中,value代入drink中 该如何写呢
另外想再问一个基楚的问题
就是我用linux 执行python程式时,
py python_program.py test.txt
后面的test.txt是我python程式要去读取的档案
请问在程式中该如何去读取后面附加的名称档案?
感谢各位