-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNotes.txt
73 lines (53 loc) · 1.24 KB
/
Notes.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
'''
My personal notebook for learning Python.
'''
\\ \' \" \t \n
r'\\' == '\\\\'
format(value,'4,.2f')
and, or =
short-circuit evaluation!!!
def a(x,y):
...
a(3,y=6)
.py can be imported as modules!
[a,b,c]*3
list[-1:-9:-2]
{}.get('Vera','Not found')
private __var
To: windows file locator dialog
from tkinter import Tk,filedialog
Tk().withdraw()
filedialog.askopenfilename()
filedialog.asksaveasfilename()
For more info, visit:
C:\program files\python36\lib\tkinter\filedialog.py
To: input without Enter
import msvcrt as KeyBuff
if KeyBuff.kbhit():
KeyBuff.getch().decode()
Module: time
.sleep(seconds)
To: resize CMD
os.system('mode con: cols='+str(width)+' lines='+str(height))
To: compile exe or Mac exe
PyInstaller
while else?
while next(iter(range(3))):
pass
else:
willDo()
while next(iter(range(3))):
break
else:
willNotDo()
while False:
pass
else:
willDo()
'yes' if True else 'no'
The purpose of try - else:
exceptions in else won't be catched.
Source code location
from os import path
path.dirname(__file__)
IT HAS BEEN SO MANY TIMES I REDISCOVERED I HAVE BEEN USING open(..., 'w+') WRONG!