Introduction to Python
Profound Academy
Status
1
Input and Output
2
Variables and Integer Arithmetic
3
Conditional Operators
4
Advanced Conditions - Nesting
5
Types and Variables
6
Strings
7
Lists
8
For Loops
9
While Loops
10
continue, break, while...else
11
String and List methods
12
Nested Loops
13
List Comprehension
14
Tuples and Sets
15
dict
16
Functions
17
Functions 2
18
Lambda and higher-order functions
19
Files
Description
Classes
swap min & max
Given a list of numbers on a single line, your task is to find the minimum and the maximum in the list and swap their places.
The program should output the resulting list after the swap.
Input
Output
5 1 4 3 0 -1
-1 1 4 3 0 5
To check your solution you need to sign in
Sign in to continue