This file contains hidden or 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('Inside file foo.py; and __name__ is %s' % __name__) | |
# ekraanile ilmub tekst: | |
# Inside file foo.py; and __name__ is foo | |
# kui foo.py käivitatakse otse, ilmub foo asemel: | |
# Inside file foo.py; and __name__ is __main__ | |
def do_something_cool(): | |
print('Doing something cool...') |
This file contains hidden or 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
def hello(): | |
print('Hello!') | |
def say_greetings(name): | |
print('Greetings, %s!' % name) | |
# Python 3: | |
# print('Greetings, {0}!'.format(name)) |
This file contains hidden or 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
import re | |
import time | |
import unittest | |
import selenium | |
class TestCase1(unittest.TestCase): | |
def setUp(self): | |
self.verification_errors = [] |
This file contains hidden or 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
Monday, 31.01.2011 Wednesday, 19.01.2011 | |
Monday, 28.02.2011 Tuesday, 15.02.2011 | |
Thursday, 31.03.2011 Tuesday, 15.03.2011 | |
Friday, 29.04.2011 Friday, 15.04.2011 | |
Tuesday, 31.05.2011 Wednesday, 18.05.2011 | |
Thursday, 30.06.2011 Wednesday, 15.06.2011 | |
Friday, 29.07.2011 Friday, 15.07.2011 | |
Wednesday, 31.08.2011 Monday, 15.08.2011 | |
Friday, 30.09.2011 Thursday, 15.09.2011 | |
Monday, 31.10.2011 Wednesday, 19.10.2011 |
NewerOlder