String Formats Flashcards
1
Q
%d
A
number
2
Q
%i
A
number (same as %d)
3
Q
%o
A
octal integer base 8
4
Q
%u
A
unicode string
5
Q
%x
A
hexadecimal integer
6
Q
%X
A
uppercase hexadecimal integer
7
Q
%e
A
scientific notation
8
Q
%E
A
uppercase scientific notation
9
Q
%g
A
general format (can display scientific notation)
10
Q
%G
A
uppercase general format
11
Q
%c
A
character or integer
12
Q
%r
A
like %s, uses repr function which includes quotes and special characters are escaped
13
Q
%s
A
string
14
Q
%%
A
not sure