Result Size: 1264 x 38
x
 
x = "Hello World"
#display x:
print(x)
#отобразить тип данных x:
print(type(x))
        
Hello World
<class 'str'>