From 5162439f35ef9778f0ccd3fb3bbb0cd450d5ed21 Mon Sep 17 00:00:00 2001 From: LinLihe Date: Wed, 25 Oct 2017 10:24:34 -0400 Subject: [PATCH] message --- nested_data_answers.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nested_data_answers.py b/nested_data_answers.py index c334d05..e9bfc85 100644 --- a/nested_data_answers.py +++ b/nested_data_answers.py @@ -3,6 +3,8 @@ # - The * is a wildcard. It's telling python I want to import # everything from the file twitter_data.py from twitter_data import * + +print ("Input data is from Twitter") # What is the difference between the above statement and the following: # import wtitter_data # You will need to comment the import above and uncomment this one to experiment # HINT: the code below assumes we are using the first type of import: 'from twitter_data import *'