Write a Python script that outputs "Automating with Python is fun!" to the screen.
Answers
Answered by
2
print("Automating with Python is fun!")
Answered by
0
print("Automating with Python is fun!")
By the way, there are other fun ways to do this, for example,
message = "Automating with Python is fun."
print(message)
Hope this helps!
Similar questions