11 lines
97 B
Python
11 lines
97 B
Python
from enum import Enum
|
|
|
|
|
|
|
|
def keepA(a,b=1,c=2,d=3):
|
|
print(a)
|
|
print('Straight')
|
|
|
|
keepA(2)
|
|
|