Guest User

Untitled

a guest
Dec 19th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. A = [30, 40, 50]
  2. B = [1,2,3]
  3.  
  4. A 30 B 1 A 40 B 2 A 50 B 3
  5.  
  6. print (len(A)* ('A {} B {}').format(*A,*B)
Add Comment
Please, Sign In to add comment