You are viewing a single comment's thread. Return to all comments →
agreed on confunsing wording
python3
if __name__ == '__main__': i = int(4) d = float(4.0) s = str('HackerRank') a = int(input().strip()) b = float(input().strip()) c = str(input().strip()) print(i+a) print(b+d) print(s, c)
Seems like cookies are disabled on this browser, please enable them to open this website
Day 1: Data Types
You are viewing a single comment's thread. Return to all comments →
agreed on confunsing wording
python3