Python Tutorial 11 - Functions | How to return multiple values in Python

preview_player
Показать описание
Python 3 Programming Tutorial - Function Parameters | How to return multiple values

Functions parameters in python,python functions advanced,python functional programming,python functions,functional parameters python,python multiple files,python multiple functions,python multiple function arguments,python multiple functions at once,multiple values in python function,how to return multiple values in python,how to return multiple values in python function,return values in python,multiple arguments in python,return multiple values in python
Рекомендации по теме
Комментарии
Автор

Sounds like you recorded in a hurricane. Pop filter please. Great otherwise

DWithLairdWT
Автор

thanks for the explanation!

with multiple functions, how come the name defined in the first function, is forgotten in the second function?

def login():

name = input('give me your name ')

def giveback():

print(name)



login()

giveback()

Reneeke