forked from HadXu/DeepLearningTutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.py
More file actions
37 lines (23 loc) · 674 Bytes
/
test.py
File metadata and controls
37 lines (23 loc) · 674 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/usr/bin/python
# -*- coding: utf-8 -*-
"""
Function:
【教程】把Sublime Text 2用作Python的IDE去实现Python的开发
http://www.crifan.com/use_sublime_text_2_as_python_ide
Author: Crifan Li
Version: 2013-02-01
Contact: admin at crifan dot com
"""
def sublimeText2IdeDemo():
"""
Demo how to use sublime text 2 as Python IDE
also try to support:
input parameter
autocomplete
"""
print "Demo print in Sublime Text 2"
inputVal = 100
#raw_input("Now in sublime text 2, please input parameter:")
print "Your inputed parameter is ",inputVal
if __name__ == "__main__":
sublimeText2IdeDemo()