Please enable JavaScript in your browser!
Startsida
Utforska
Hjälp
Logga in
andreiat
/
code_snippets
spegling av
https://github.com/CoreyMSchafer/code_snippets.git
Bevaka
1
Stjärnmärk
0
Fork
0
Filer
Ärenden
0
Wiki
Träd:
c6969cfffc
Grenar
Taggar
master
code_snippets
/
Python-Ints
/
intro.py
intro.py
90 B
Historik
Rå
1
2
3
4
5
6
7
8
9
num_1 = '100'
num_2 = '200'
num_1 = int(num_1)
num_2 = int(num_2)
print(num_1 + num_2)