initial commit
This commit is contained in:
14
fotovolatik/main.py
Normal file
14
fotovolatik/main.py
Normal file
@@ -0,0 +1,14 @@
|
||||
# -*- coding: ansi -*-
|
||||
import random
|
||||
|
||||
bezirke = [
|
||||
"Graz", "Graz-Umgebung", "Bruck-M<>rzzuschlag", "Deutschlandsberg",
|
||||
"Hartberg-F<>rstenfeld", "Leibnitz", "Leoben", "Liezen",
|
||||
"Murau", "Murtal", "S<EFBFBD>doststeiermark", "Voitsberg", "Weiz"
|
||||
]
|
||||
|
||||
gewaehlte_bezirke = random.sample(bezirke, 5)
|
||||
|
||||
print("Gef<EFBFBD>rderte Bezirke im heurigen Jahr:")
|
||||
for bezirk in gewaehlte_bezirke:
|
||||
print("-", bezirk)
|
||||
Reference in New Issue
Block a user