#Day 2 - Our First Program
Today we will write our first ever python program from scratch. It will consist of a bunch of print statements. print can be used to print something on the console in python
Quick Quiz
Write a program to print a poem in Python. Choose the poem of your choice and publish your code on GitHub.
print("---Your poem here---")Copied!
This is a example of basic code :
print("Hello World")
print("Bye")
Please make sure you attempt this. Might be easy for some of you but please finish each and every task
Thank you