|  |  | @ -4,17 +4,24 @@ import time | 
			
		
	
		
		
			
				
					
					|  |  |  | import random |  |  |  | import random | 
			
		
	
		
		
			
				
					
					|  |  |  | import string |  |  |  | import string | 
			
		
	
		
		
			
				
					
					|  |  |  | import statistics |  |  |  | import statistics | 
			
		
	
		
		
			
				
					
					|  |  |  | print(math.floor((round(cmath.phase(0.2+0.8j), 2) * 20) / 3), (round(cmath.phase(0.2+0.8j), 2) * 20) % 3) |  |  |  | print(divmod(((round(cmath.phase(0.2+0.8j),2)) * 20),3)) | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | msc_time = time.localtime(time.time() + 3 * 3600); print(msc_time) |  |  |  | msc_time = time.localtime(); msc_time | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | mytime = f"{msc_time.tm_hour:02d}:{msc_time.tm_min:02d}"; print(mytime) |  |  |  | hm=(f'{msc_time.tm_hour}:{msc_time.tm_min}') | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | print(hm) | 
			
		
	
		
		
			
				
					
					|  |  |  | wd = ['Понедельник', 'Вторник', 'Среда', 'Четверг', 'Пятница', 'Суббота', 'Воскресенье'] |  |  |  | wd = ['Понедельник', 'Вторник', 'Среда', 'Четверг', 'Пятница', 'Суббота', 'Воскресенье'] | 
			
		
	
		
		
			
				
					
					|  |  |  | p = random.sample(wd, 3); print(p) |  |  |  | p = random.sample(wd, 3); | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | k = list(range(14, 33, 3)); print(k) |  |  |  | print(p) | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  |  rand = random.choice(k); print(rand) |  |  |  | k = list(range(14, 33, 3)) | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | print(k) | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | rand = random.choice(k) | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | print(rand) | 
			
		
	
		
		
			
				
					
					|  |  |  | N = round(random.gauss(15, 4)) |  |  |  | N = round(random.gauss(15, 4)) | 
			
		
	
		
		
			
				
					
					|  |  |  | N=max(1,N); print(N) |  |  |  | print(N) | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | rl = random.choices(string.ascii_uppercase, k=N); print(rl) |  |  |  | p=random.sample(string.ascii_letters, N) | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | ['J', 'Y', 'Z', 'Z', 'I', 'W', 'F', 'Y', 'B', 'H', 'G', 'N', 'B', 'F', 'B', 'D', 'P', 'Y', 'R', 'I', 'R', 'C'] |  |  |  | print(p) | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | c = time.time();print(c) |  |  |  | c = time.time()+3*3600 | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | inter_sec = c - time.mktime(msc_time); print(inter_sec) |  |  |  | print(c) | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | inter_min = round(inter_sec / 60, 2); print(inter_min) |  |  |  | inter_sec = c - time.mktime(msc_time) | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | print(inter_sec) | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | inter_min = round(inter_sec / 60, 2) | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | print(inter_min) | 
			
		
	
	
		
		
			
				
					|  |  | 
 |