PY
py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
"""
for
https://www.sololearn.com/Discuss/1399776/?ref=app
"""
try:
check = int(input())
# checked = int(check)
print("Is a number")
except(ValueError):
print("Not a number")
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run