I was running this code and it is supposed to be creating a window but it doesn't create any window in Pycharm. I am using Pycharm Community edition with Python 3.6. When I am running this code in IDLE, the window is generated.
import tkinter
from datetime import date, datetime
root = tkinter.Tk()
c = tkinter.Canvas(root,width =800, height =768, bg = 'black')
c.pack()
c.create_text(100,50, anchor = 'w', fill = 'orange', \
font = 'Arial 28 bold underline', text = 'My Countdown calendar')