@willa_will Используйте .capitalize() метод у строки чтобы сделать первую букву заглавной в Python, ниже пример кода:
1 2 3 4 |
str_example = "тестовая строка как пример." # Вывод: Тестовая строка как пример. print(str_example.capitalize()) |
@willa_will
Есть несколько способов сделать первую букву заглавной в Python:
1 2 3 |
string = "hello world" capitalized_string = string.capitalize() print(capitalized_string) # Hello world |
1 2 3 |
string = "hello world" title_string = string.title() print(title_string) # Hello World |
1 2 3 |
string = "hello world" new_string = string[0].upper() + string[1:] print(new_string) # Hello world |
1 2 3 |
string = "hello world" new_string = string.replace(string[0], string[0].upper(), 1) print(new_string) # Hello world |
1 2 3 4 5 |
import string string = "hello world" new_string = string.capwords(string) print(new_string) # Hello World |