Example #1
0
	def get_input() : 
		function = input('what do you want to do ? ')
		if(function == 'dictionary') : 
			dictionary(LIST,DICTIONARY)
		elif(function == 'test') : 
			test(LIST,DICTIONARY)
		else : 
			print('function not available')
			get_input()
Example #2
0
	def get_input() :
		function = input('what do you want to do ? ')
		if(function == 'dictionary') :
			dictionary(LIST,DICTIONARY)
		elif(function == 'test') :
			test(LIST,DICTIONARY)
		else :
			print('function not available')
			print('the only functions avaliable are : dictionary and test',end='\n\n\n')
			get_input()