赋值变量c,判断c的变量类型

如何将hello,World!赋值给变量c,将判断c的变量类型

c='hello,World!'
print(type(c))

s="hello,World!"
print(type(s))