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
14 lines (11 loc) · 341 Bytes
/
pp.py
File metadata and controls
14 lines (11 loc) · 341 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# coding:utf-8
'''
filename: pp.py
'''
__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.")