0
Что не так?
Не могу понять что не так country = "Russia" city = "Moscow" street = "K" home = "N" print(country + city + street + " street" + home + " home") Консоль выдаёт RussiaMoscowK streetN home, почему тут нет пробелов между словами кроме тех, где я в кавычках поставила? Пробовала поставить и перед variables, но это ничего не меняет в отображении. Как сделать так, чтобы выдавало Russia Moscow K street N home?
4 ответов
+ 2
If the value is a string e.g, it is wrapped in quotes -> 'hi_there!' or "hi_there!" then it is meant to be displayed as it is, with underscores.
+ 1
country = "Russia"
city = "Moscow"
street = "K"
home = "N"
print(country, city, street, "street", home, "home")
Use comma between the values when calling print()
+ 1
Ipang thank you so much! By the way, I’ve seen that sometimes there are used underlines like
print(hi_there!)
When do I need to use underlines?
+ 1
Ipang Oh, I see. Thanks!!^^