This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sdfdsfdsf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
print("to je moja prva domaca naloga") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% extends "base.html" %} | |
{% block title %}To je glavna stran{% endblock %} | |
{% block vsebina %} | |
<h1>to je naslov na glavni strani</h1> | |
{% endblock vsebina %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head lang="en"> | |
<meta charset="UTF-8"> | |
<title>{% block title %}{% endblock title %}</title> | |
<!--<link rel="stylesheet" href="/assets/css/style.css">--> | |
</head> | |
<body> | |
<a href="/">Doma</a> | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head lang="en"> | |
<meta charset="UTF-8"> | |
<title>Moj Blog</title> | |
<link rel="stylesheet" href="/assets/css/blog.css"> | |
</head> | |
<body> | |
<h1>To je moj prvi vnos!</h1> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import os | |
import jinja2 | |
import webapp2 | |
template_dir = os.path.join(os.path.dirname(__file__), "templates") | |
jinja_env = jinja2.Environment(loader=jinja2.FileSystemLoader(template_dir), autoescape=False) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. Obstaja vec algoritmov za sortiranje seznamov. Enega smo na kratko pogledali vceraj. Sedaj poskusite implementirati naslednji algoritem. | |
Imate seznam s1 = [5, 4, 3, 1, 1, 2, 2] in s2 = []. Napisite funkcijo uredi2, ki bo najprej v s1 poiskala najmanjso vrednost (en element), jo dodala v s2 in jo hkrati izbrisala iz s1. V naslednjem koraku naj funkcija spet poisce najmanjso vrednost iz s1, jo doda v s2, hkrati pa izbrise iz s1. To naj se ponavlja, dokler s1 ni prazen. Na koncu naj funkcija vrne s2, v katerem bodo vrednosti v naslednjem vrstnem redu [1, 1, 2, 2, 3, 4, 5]. | |
2. | |
Kaj je razlika med funkcijo in metodo? | |
Implementirajte razred Telefon, ki ima naslednje lastnosti: id (stevilka), znamka (string), stevilka (stevilka). Nato implementirajte razred Oseba, ki ima naslednje lastnosti: id (stevilka), ime (string), priimek (string), telefoni (seznam, kjer so notri stevilke, ki predstavljajo id telefona). Napisite program v katerem: | |
- naredite seznam telefoni, ki ima notri nekaj poljubno narejenih objekt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
p { | |
color: red; | |
background-color: yellow; | |
/* padding: 4px; */ | |
border: 6px dashed blue; | |
font-size: 10px; | |
} | |
#moj_posebni_element { | |
background-color: green; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Moja prva spletna stran</title> | |
<!-- 1. nacin vrivanja stilov --> | |
<link rel="stylesheet" href="style.css"> | |
<!-- 2. nacin vrivanja stilov --> | |
<style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Moja prva spletna stran</title> | |
</head> | |
<body> | |
To je moje <strong>prvo besedilo</strong> |
NewerOlder