3 lines
168 B
Python
3 lines
168 B
Python
famous_person = "Douglas Adams"
|
|
message = f'{famous_person} once said, "We are stuck with technology when what we really want is just stuff that works."'
|
|
print(message) |