mirror of
				https://gitea.blesmrt.net/mikaela/scripts.git
				synced 2025-11-04 03:17:32 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			233 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			233 B
		
	
	
	
		
			Python
		
	
	
	
	
	
"""
 | 
						|
Sovellus tekee yksinkertaisen salasanatarkistuksen if:illä
 | 
						|
"""
 | 
						|
 | 
						|
KOODISANA = "python"
 | 
						|
 | 
						|
print("Tervetuloa")
 | 
						|
syote = input("Anna salasana: ")
 | 
						|
 | 
						|
if syote == KOODISANA:
 | 
						|
    print("Matka voi alkaa")
 | 
						|
else:
 | 
						|
    print("Yritä uudelleen")
 |