美文网首页
2. Data types

2. Data types

作者: 捕鲸小能手 | 来源:发表于2016-10-14 22:59 被阅读0次
# Integers
print(-1, 0, 1, 0xff)

# Floating numbers
print(3.14, 1.024e10)

# Strings
print('Single quoted', "Double qouted", "I'm ok", 'Mixing "qoutes"', '''multi line 
text\n''')

# Boolean
print(True, False)

# Empty
print(None)

相关文章

网友评论

      本文标题:2. Data types

      本文链接:https://www.haomeiwen.com/subject/uzjnyttx.html