+ 1
How do i make use of the parameters ?
def car(name, cost): name = Chevy cost = 10,000 print(car(name)) Is it possible for me to only print the name?
1 ответ
+ 1
def car(name, cost):
print(name)
car('Chevi',10000)
def car(name, cost): name = Chevy cost = 10,000 print(car(name)) Is it possible for me to only print the name?