Please enable JavaScript in your browser!
Home
Esplora
Aiuto
Accedi
andreiat
/
code_snippets
mirror da
https://github.com/CoreyMSchafer/code_snippets.git
Segui
1
Vota
0
Forka
0
File
Problemi
0
Wiki
Albero (Tree):
c6969cfffc
Rami (Branch)
Tag
master
code_snippets
/
Python-Ints
/
intro.py
intro.py
90 B
Cronologia
Originale
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)