top of page
Click here to go to the home page of AskTheCode.

List Comprehensions | HACKER RANK

Team ATC

Asked: Rahul Kumar Ranjan |Category: Python



 

x = int(input()) y = int(input()) z = int(input()) n = int(input()) print( [[i,j,k] for i in range( x + 1) for j in range( y + 1) for k in range(z+1) if ( ( i + j + k ) != n ) ])

Recent Posts

See All

Comments


bottom of page