From 97d33a9d827f98cd120d55d7c06af3e68c879feb Mon Sep 17 00:00:00 2001 From: Matt Huntington Date: Tue, 19 Sep 2017 13:29:53 -0400 Subject: [PATCH] Update python.md --- python.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python.md b/python.md index 945fd58..af6f3a8 100644 --- a/python.md +++ b/python.md @@ -148,7 +148,7 @@ if a == 'oh hai!': You can get user input from the command like so: ```python -user_input = raw_input("Please enter something: ") +user_input = input("Please enter something: ") print("you entered: " + user_input) ```