Python return multiple values

Code examples

6
0

python return multiple values

def x(): 
    return 1, 2, 3, 4
a, b, c, d = x() 
print(a, b, c, d)		# 1 2 3 4
2
0

multiple return in python

return a, b
0
0

how to create a list of repeated values python

[e] * n

Similar pages

Similar pages with examples

In other languages

This page is in other languages

Русский
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................