15 lines
172 B
Python
15 lines
172 B
Python
|
#!/usr/bin/python
|
||
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
tuple_variable = tuple(["1","2","3"])
|
||
|
|
||
|
print tuple_variable
|
||
|
|
||
|
one, two, three = tuple_variable
|
||
|
|
||
|
print one
|
||
|
|
||
|
print two
|
||
|
|
||
|
print three
|