假設我有一個字典跟函數
想要把字典的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程式要去讀取的檔案
請問在程式中該如何去讀取後面附加的名稱檔案?
感謝各位