Please enable JavaScript in your browser!
Página inicial
Explorar
Ajuda
Entrar
andreiat
/
code_snippets
mirror de
https://github.com/CoreyMSchafer/code_snippets.git
Observar
1
Favorito
0
Fork
0
Arquivos
Issues
0
Wiki
Branch:
master
Branches
Tags
master
code_snippets
/
Str_Repr
/
test2.py
test2.py
89 B
Link permanente
Histórico
Raw
1
2
3
4
5
6
7
8
a = [1,2,3,4]
b = 'sample string'
print str(a)
print repr(a)
print str(b)
print repr(b)