Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ <h2 class="w3-text-grey w3-padding-16"><i class="fa fa-suitcase fa-fw w3-margin-

<div class="w3-container">
<h5 class="w3-opacity"><b>I am a pH-developers</b></h5>
<h6 class="w3-text-teal"><i class="fa fa-calendar fa-fw w3-margin-right"></i>Tanuj Vishnoi <span class="w3-tag w3-teal w3-round">CSE</span></h6>
<p>My profile is: github.com/vishnoitanuj</p>
<h6 class="w3-text-teal"><i class="fa fa-calendar fa-fw w3-margin-right"></i>Sanchit Jain <span class="w3-tag w3-teal w3-round">ENC</span></h6>
<p>My profile is: github.com/sanchjain</p>
<hr>
</div>

Expand Down Expand Up @@ -82,7 +82,7 @@ <h6 class="w3-text-teal"><i class="fa fa-calendar fa-fw w3-margin-right"></i>Tan
</div>

<footer class="w3-container w3-teal w3-center w3-margin-top">
<p>Mainted by: Tanuj Vishnoi</p>
<p>Mainted by: Sanchit Jain</p>
<p>Powered by <a href="http://www.printhello.in/" target="_blank">printhello/a></p>
</footer>

Expand Down
8 changes: 4 additions & 4 deletions problems_python/print_hello_description.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
print_hello_tuple = tuple(print_hello_description)
return print_hello_tuple

print(get_print_hello_description())