diff --git a/Python/concatenation_Hello_world.py b/Python/concatenation_Hello_world.py new file mode 100644 index 0000000..29d594a --- /dev/null +++ b/Python/concatenation_Hello_world.py @@ -0,0 +1,14 @@ +# Hello World Program Through Concatenation of String's + +HF1 = 'H' +HF2 = 'e' +HF3 = 'l' +HF4 = 'l' +HF5 = 'o' +HF6 = 'W' +HF7 = 'o' +HF8 = 'r' +HF9 = 'l' +HF10 ='d' + +print(HF1+HF2+HF3+HF4+HF5+" "+HF6+HF7+HF8+HF9+HF10) \ No newline at end of file