A portfolio site using Bootstrap 3 and JQuery.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#hello.py | |
#Simple hello world Python 3 program | |
#Print 'Hello World' | |
print('Hello There!') | |
#Ask for user's name and take input | |
print('What\'s your name?') | |
myName = input() | |
#Output name provided | |
print('Nice to meet you, ' + myName) | |
#Count and display the amount of charaters in the name |