This website works better with JavaScript
Home
Explore
Help
Sign In
zhensolid
/
Python-100-Days
Watch
1
Star
0
Fork
0
Files
Issues
0
Pull Requests
0
Wiki
Tree:
e34311df93
Branches
Tags
dependabot/pip/50WPython/code/Python/opencourse/lxml-4.6.3
dependabot/pip/50WPython/code/Python/opencourse/pygments-2.7.4
dependabot/pip/50WPython/code/Python/opencourse/urllib3-1.26.5
master
Python-100-Days
/
公开课
/
文档
/
年薪50W+的Python程序员如何写代码
/
code
/
Python
/
opencourse
/
part02
/
idiom02.py
idiom02.py
81 B
History
Raw
1
2
3
4
5
6
7
8
a, b = 5, 10
# temp = a
# a = b
# b = a
a, b = b, a
print(f'a = {a}, b = {b}')