Skip to content

Instantly share code, notes, and snippets.

@zhengger
Created October 19, 2018 03:11
Show Gist options
  • Select an option

  • Save zhengger/0ad3ca8d326b297d77d2a0980abe155b to your computer and use it in GitHub Desktop.

Select an option

Save zhengger/0ad3ca8d326b297d77d2a0980abe155b to your computer and use it in GitHub Desktop.

Revisions

  1. zhengger created this gist Oct 19, 2018.
    36 changes: 36 additions & 0 deletions Temp.py
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,36 @@
    # 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})