mirror of
				https://github.com/pocketpy/pocketpy
				synced 2025-11-04 10:40:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			110 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			110 B
		
	
	
	
		
			Python
		
	
	
	
	
	
a = b = 1,2
 | 
						|
 | 
						|
assert a == b
 | 
						|
assert a == (1,2)
 | 
						|
 | 
						|
a = 1,2
 | 
						|
 | 
						|
a = b = c = d = '123'
 | 
						|
 | 
						|
assert a == b == c == d == '123' |