Posts Day01 - Data types (Python 3)
Post
Cancel

Day01 - Data types (Python 3)

  • URL : https://www.hackerrank.com/challenges/30-data-types/problem

  • Objective
    • Today, we’re discussing data types. Check out the Tutorial tab for learning materials and an instructional video!
  • Task
    • Complete the code in the editor below. The variables i, d, and s are already declared and initialized for you. You must:

      1. Declare 3 variables: one of type int, one of type double, and one of type String.
      1. Read 3 lines of input from stdin (according to the sequence given in the Input Format section below) and initialize your 3 variables.
      1. Use the operator to perform the following operations:
          1. Print the sum of i plus your int variable on a new line.
          1. Print the sum of d plus your double variable to a scale of one decimal place on a new line.
          1. Concatenate s with the string you read as input and print the result on a new line.
  • Note
    • If you are using a language that doesn’t support using for string concatenation (e.g.: C), you can just print one variable immediately following the other on the same line. The string provided in your editor must be printed first, immediately followed by the string you read as input.
  • Input Format

    • The first line contains an integer that you must sum with i.
    • The second line contains a double that you must sum with d.
    • The third line contains a string that you must concatenate with s.
  • Output Format

    • Print the sum of both integers on the first line, the sum of both doubles (scaled to 1 decimal place) on the second line, and then the two concatenated strings on the third line.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
i = 4
d = 4.0
s = 'HackerRank '
# Declare second integer, double, and String variables.
a = 0
b = 0
c = 0
# Read and save an integer, double, and String to your variables.
a = int(input())
b = float(input())
c = input()
# Print the sum of both integer variables on a new line.
print(i + a)
# Print the sum of the double variables on a new line.
print(d + b)
# Concatenate and print the String variables on a new line
# The 's' variable above should be printed first.
print(s + c)
1
2
3
4
5
6
7
 1
 1
 3

5
5.0
HackerRank 3
This post is licensed under CC BY 4.0 by the author.