Hackerrank: 30 Days of Code of python
Day 0: Hello, World.
code :
input_string=input()
print('Hello, World.')
#print('Welcome to 30 Days of Code!')
print(input_string)
output :
Day 1: Data Types
code :
i = 4
d = 4.0
s = 'HackerRank '
#Declare second integer, double, and String variables...
fatofatnewslab.hashnode.dev1 min read