From 138399a45a85acc0226322bf6c1c19b4bb65d432 Mon Sep 17 00:00:00 2001 From: sanchjain Date: Thu, 3 Oct 2019 19:04:04 +0530 Subject: [PATCH 1/2] First commit --- index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index fbe6a9b..7d14452 100644 --- a/index.html +++ b/index.html @@ -45,8 +45,8 @@

I am a pH-developers
-
Tanuj Vishnoi CSE
-

My profile is: github.com/vishnoitanuj

+
Sanchit Jain ENC
+

My profile is: github.com/sanchjain


@@ -82,7 +82,7 @@
Tan
-

Mainted by: Tanuj Vishnoi

+

Mainted by: Sanchit Jain

Powered by printhello/a>

From 02516fc2f73f0ccdfc741bf9834edf2fabf0216d Mon Sep 17 00:00:00 2001 From: sanchjain Date: Sat, 5 Oct 2019 18:15:51 +0530 Subject: [PATCH 2/2] Printed tuple properly --- problems_python/print_hello_description.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/problems_python/print_hello_description.py b/problems_python/print_hello_description.py index 2b057d8..4f314e5 100644 --- a/problems_python/print_hello_description.py +++ b/problems_python/print_hello_description.py @@ -7,7 +7,7 @@ def get_print_hello_description(): print_hello_description=["Printhello", "is the best educational gateway for every year to kickstart their coding life. Thapar Alumni who gave their heart in teaching languages and prepare students for their placements now starting the best languages batches C/C++ and Python from 8th October onwards . It not only focus on just completing the course but logic development and making awesome projects with that language is their key goal"] - print_hello_tuple = () - for word in print_hello_description: - print_ hello_tuple.append(word) - return print_hello_tuple \ No newline at end of file + print_hello_tuple = tuple(print_hello_description) + return print_hello_tuple + +print(get_print_hello_description()) \ No newline at end of file