Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Lernen Challenge: Create a More Complex Function | What is a Function?
Python Functions: From Zero to Hero

Swipe um das Menü anzuzeigen

book
Challenge: Create a More Complex Function

Python 3.6 has a way to format strings that allows you to use built-in expressions inside string constants. This approach is called f-strings. Let's look at the examples.

12
string = 'world' print(f'Hello, {string}')
copy

Let's look at the syntax. All text you want to print must be enclosed in quotation marks preceded by an f, and any variables you want to print within that text must be enclosed in curly braces. You will also need to use f-strings in the task.

Aufgabe

Swipe to start coding

Let's complicate the task. You have to create a function named function(), and create a variable inside a function as capital, assign a value like London; use f-strings and print() function to display the following text: London is the capital and largest city of England and the United Kingdom

Lösung

Switch to desktopWechseln Sie zum Desktop, um in der realen Welt zu übenFahren Sie dort fort, wo Sie sind, indem Sie eine der folgenden Optionen verwenden
War alles klar?

Wie können wir es verbessern?

Danke für Ihr Feedback!

Abschnitt 1. Kapitel 2

Fragen Sie AI

expand
ChatGPT

Fragen Sie alles oder probieren Sie eine der vorgeschlagenen Fragen, um unser Gespräch zu beginnen

book
Challenge: Create a More Complex Function

Python 3.6 has a way to format strings that allows you to use built-in expressions inside string constants. This approach is called f-strings. Let's look at the examples.

12
string = 'world' print(f'Hello, {string}')
copy

Let's look at the syntax. All text you want to print must be enclosed in quotation marks preceded by an f, and any variables you want to print within that text must be enclosed in curly braces. You will also need to use f-strings in the task.

Aufgabe

Swipe to start coding

Let's complicate the task. You have to create a function named function(), and create a variable inside a function as capital, assign a value like London; use f-strings and print() function to display the following text: London is the capital and largest city of England and the United Kingdom

Lösung

Switch to desktopWechseln Sie zum Desktop, um in der realen Welt zu übenFahren Sie dort fort, wo Sie sind, indem Sie eine der folgenden Optionen verwenden
War alles klar?

Wie können wir es verbessern?

Danke für Ihr Feedback!

Abschnitt 1. Kapitel 2
Switch to desktopWechseln Sie zum Desktop, um in der realen Welt zu übenFahren Sie dort fort, wo Sie sind, indem Sie eine der folgenden Optionen verwenden
Wir sind enttäuscht, dass etwas schief gelaufen ist. Was ist passiert?
some-alt