5 tricks that will improve your python skills

Channel:
Subscribers:
2,410
Published on ● Video Link: https://www.youtube.com/watch?v=9Mth-qpoy3M



Duration: 9:42
82 views
5


Am going to teach you simple tricks that will increase your Python tricks..

Code that didn't work

Year = (1999, 2003, 2011, 2017)
Month = ("Mar", "Jun", "Jan", "Dec")
Day = (11,21,13,5)
print zip(Year,Month,Day)

Second code

x = [[31,17],
[40 ,51],
[13 ,12]]
print (zip(*x))