x y 3d 1 2 python

Solutions on MaxInterview for x y 3d 1 2 python by the best coders in the world

showing results for - "x y 3d 1 2 python"
Giulio
28 Apr 2018
1>>> a,b = 1,2
2>>> a
31
4>>> b
52
6>>> a,b,c = ['do', 're', 'mi']
7>>> a
8'do'
9>>> b
10're'
11>>> c
12'mi'
13>>>