18 lines
298 B
Python
18 lines
298 B
Python
|
#!/usr/bin/env python
|
||
|
# -*- coding: utf-8 -*-
|
||
|
"""
|
||
|
@project:
|
||
|
@File : 语法测试
|
||
|
@Author : qiqq
|
||
|
@create_time : 2023/5/22 11:17
|
||
|
"""
|
||
|
|
||
|
def bar(a,b,c,**number):
|
||
|
print(a)
|
||
|
print(b)
|
||
|
print(c)
|
||
|
cce=number['dedf']
|
||
|
print(cce)
|
||
|
|
||
|
|
||
|
bar(a=1, b=2, c=3,dedf=5456,dfs=447)
|