Питон 2035: строки

Питон 2035: строки

9th - 12th Grade

12 Qs

quiz-placeholder

Similar activities

Types of Mass Media

Types of Mass Media

10th Grade - Professional Development

11 Qs

Programming Quiz 1

Programming Quiz 1

11th Grade

11 Qs

IT-Зарядка

IT-Зарядка

5th Grade - University

10 Qs

Y8 - Pre-Bebras

Y8 - Pre-Bebras

9th Grade

15 Qs

Word 2016 Lesson 1

Word 2016 Lesson 1

9th - 12th Grade

10 Qs

9.2 knowledge check

9.2 knowledge check

9th Grade

14 Qs

Numpy-1

Numpy-1

9th - 12th Grade

10 Qs

Test on Python Function

Test on Python Function

11th - 12th Grade

12 Qs

Питон 2035: строки

Питон 2035: строки

Assessment

Quiz

Computers

9th - 12th Grade

Hard

Created by

Лада Торчик

Used 13+ times

FREE Resource

12 questions

Show all answers

1.

FILL IN THE BLANK QUESTION

30 sec • 3 pts

x = len("Hello, world!")

Чему равен x?

2.

MULTIPLE CHOICE QUESTION

30 sec • 3 pts

s = "малако"

s[1] = "о"

print(s)

Что выведется на экран в результате выполнения кода?

молако

малако

молоко

ошибка

Answer explanation

Строки неизменяемы, поэтому изменять отдельные символы строки, обращаясь к ним по индексам, нельзя

3.

MULTIPLE CHOICE QUESTION

45 sec • 5 pts

Как вывести все символы строки s, кроме последних трех?

print(s[2:])

print(s[:-3])

print(s[-3:])

print(s[:3])

print(s[3:])

4.

MULTIPLE CHOICE QUESTION

30 sec • 3 pts

s = "Abrakadabra"

print(s.count("a"))

Чтов выведется на экран в результате выполнения кода?

4

5

3

0

ошибка

5.

MULTIPLE CHOICE QUESTION

30 sec • 3 pts

Какая функция разбивает разбивает строку на подстроки по заданному разделителю?

end

join

split

sep

6.

MULTIPLE CHOICE QUESTION

45 sec • 6 pts

x = ord("B")

print(chr(x - 1))

Что выведется на экран в результате выполнения кода?

A

B

66

65

ошибка

7.

MULTIPLE CHOICE QUESTION

45 sec • 4 pts

s = "ПрИвЕт"

print(s.____)

Что нужно поставить на место пропуска, чтобы вывелось привет ?

lower()

islower()

swapcase()

isalpha()

Create a free account and access millions of resources

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

By signing up, you agree to our Terms of Service & Privacy Policy

Already have an account?

Discover more resources for Computers