CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
jackfrued

CoCalc provides the best real-time collaborative environment for Jupyter Notebooks, LaTeX documents, and SageMath, scalable from individual users to large groups and classes!

GitHub Repository: jackfrued/Python-100-Days
Path: blob/master/Day01-15/code/Day02/variable1.py
Views: 729
1
"""
2
使用变量保存数据并进行操作
3
4
Version: 0.1
5
Author: 骆昊
6
Date: 2018-02-27
7
"""
8
9
a = 321
10
b = 123
11
print(a + b)
12
print(a - b)
13
print(a * b)
14
print(a / b)
15
print(a // b)
16
print(a % b)
17
print(a ** b)
18
19