forked from qiwsir/StarterLearningPython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpp.py
More file actions
13 lines (9 loc) · 338 Bytes
/
pp.py
File metadata and controls
13 lines (9 loc) · 338 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
# /usr/bin/env python
# coding:utf-8
__all__ = ['_private_variable', 'public_teacher']
public_variable = "Hello, I am a public variable."
_private_variable = "Hi, I am a private variable."
def public_teacher():
print "I am a public teacher, I am from JP."
def _private_teacher():
print "I am a private teacher, I am from CN."