Is it possible in python to write a lambda function that does not need any parameters passed to it? For instance, is there a way to translate this function:
def file_opener():
f = open('filename.txt').read()
return f
or any other function with no passed input into a lambda expression?