Advertisement
EmmettMilligan

15.Enter Text Python

Feb 20th, 2020
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. from graphics import*;
  2.  
  3. emmett = input("Please input what you would like the window to output:")
  4.  
  5. window = GraphWin("Input doe",500,500)
  6.  
  7. T1 = Text(Point(250,250),emmett)
  8. T1.setStyle("bold")
  9. T1.draw(window)
  10.  
  11. window.getMouse()
  12. window.close()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement