Quick actions

cmd+k|ctrl+k

Navigation

Languages

Python 01 Introduction

Snippet info

Language

Python

Visibility

public

Author

tony

Created

2018-08-20T09:49:15Z

Updated

2018-08-20T11:37:27Z

# Python 01 Introduction

# print
print('😇您使用 Google 服务,即 print(\'hello\') 信息,并\\让您拥有\n控制权。')
print(10)
print(3.1415926)
print(True)
# Basic types (int, float, boolean, string)
a = 10
b = 3.1415926
c = a + b
a = 1000
a1 = a + 100
d = 'Tony'
print(a, b, c, 'Hello', d, a1)
# expressions
print(1 + 2 + 3 + a1)

# variables
INFO