Given is
motorcycles = ['honda', 'yamaha', 'suzuki']
How do you change 'honda' to 'BMW' ?
motorcycles[0] = 'BMW'
What does the abbreviation BDD stand for?
Behavior Driven Development
Who is this guy?
![]()
Jesus Christus
Which sticker is on the locker in Santander Platz where the books are stored?
Ladybug

Given is
bicycles = ['trek', 'cannondale', ...., 'specialized']
How do you print out the last element 'specialized' in the string
(you don't know how long the list is because of ...)
print(bicycles[-1])
How many scenarios can a feature file contain?
At least one up to as much as you want
Who is this guy?
(double points if you can name all characters on the pic)

He-Man
... no one knows all names ...
How does pip help us?
pip manage the lib installation we have for executing our python programs
Given is
motorcycles = ['honda', 'yamaha', 'suzuki']
include now 'BMW' at first place in the list
motorcycles.insert(0, 'BMW')
List at least three characteristics of Gherkin format!
Who is this guy?

Jaroslaw Kutylowski
Founder of Deepl
AND a former "ANDAGONAUT" (colleague of Tanja and David from Andagon)
What is the Answer to the Ultimate Question of Life, the Universe, and Everything?
42

* So Long, and Thanks for All the Fish
Which loops exist in Python?
1.) for loop
2.) while
Name two step and two block keywords!
step keywords:
- Given, When, Then, And, But
block keywords:
- Feature, Background, Scenario, Scenario Outline, Examples
Who is this guy?

"The Dude" Big Lebowski
What is the accessibility of this python variables?
class Test
{
public static final int x = 42;
}
This is not python !!!
What types of scenarios do exists?
- illustrative scenarios
- journey scenarios
YOU WANT TO KNOW WHAT IT IS?
READ THE BOOK!!

*available in your Favorit Santander Platz Bookstore (look for the Ladybug)
How is this monster called?
![]()
Flying Spaghetti Monster
* it is a religious group see in wiki if you are interested
Which AI support can we use in PyCharm?
Microsoft Copilot
