I'm running Python 3.6.3 on Windows 10 and installed Requests via pip.
#!python
import requests
print('Hello')
Results in "Hello" printing twice on PowerShell as well as Command Prompt. When I don't import requests, print works as expected.
Launching Python and importing from the prompt however causes no issue.