Please enable JavaScript in your browser!
Strona główna
Odkrywaj
Pomoc
Zaloguj się
andreiat
/
code_snippets
kopia lustrzana
https://github.com/CoreyMSchafer/code_snippets.git
Obserwuj
1
Polub
0
Forkuj
0
Pliki
Problemy
0
Wiki
Gałąź:
master
Gałęzie
Tagi
master
code_snippets
/
Str_Repr
/
test2.py
test2.py
89 B
Bezpośredni odnośnik
Historia
Czysty
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)