Skip to content

Instantly share code, notes, and snippets.

@zhengger
Created October 19, 2018 03:11
Show Gist options
  • Save zhengger/0ad3ca8d326b297d77d2a0980abe155b to your computer and use it in GitHub Desktop.
Save zhengger/0ad3ca8d326b297d77d2a0980abe155b to your computer and use it in GitHub Desktop.
0.01
# coding=utf-8
"""
萤火虫
亿万只闪耀
照亮黑夜
也让我复活
在你眼里
我看见信仰
你双手炙热如火
你的抚摸给我最甜的痛
让黑暗引领我们追寻光芒
即使那炙热让我们神魂颠倒
宝贝再说个美丽的谎言
你一抚摸
我便燃烧
好真实
你的触摸像阳光
点燃我每寸肌肤
我又成为我自己
你和我
同种的幸存者
唯二的幸存者
在阳光中起舞
"""
def fun_args(*x, y, **z):
"""Test the argments
:type z: object
"""
print(x)
print(y)
print(z)
fun_args(x=(3, 4), y=5, z={'a':1, 'b':2})
fun_args(3,4, y=5, z= {'a':1, 'b':2})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment