while condition:	
		code statements		
	else:
		final code statements
		
	
	x = 0

	while x < 10:
		print('x is currently: ',x)
		print(' x is still less than 10, adding 1 to x')
		x+=1
	else:
		print('All Done!')
		

break, continue, pass

	
	while condition: 
		code statement
		if condition1: 
			break
		if condition2: 
			continue 
	else:
		
	
	x = 0

	while x < 10:
		print('x is currently: ',x)
		print(' x is still less than 10, adding 1 to x')
		x+=1
		if x==3:
			print('Breaking because x==3')
			break
		else:
			print('continuing...')
			continue