Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
jackfrued
GitHub Repository: jackfrued/Python-100-Days
Path: blob/master/公开课/年薪50W+的Python程序员如何写代码/code/Python/opencourse/part02/idiom02.py
3078 views
1
a, b = 5, 10
2
3
# temp = a
4
# a = b
5
# b = a
6
7
a, b = b, a
8
print(f'a = {a}, b = {b}')
9
10