migrate to git.charlotte.sh
This commit is contained in:
commit
fbd588721e
412 changed files with 13750 additions and 0 deletions
14
python-csi160/week01/firstprogram.py
Normal file
14
python-csi160/week01/firstprogram.py
Normal file
|
@ -0,0 +1,14 @@
|
|||
|
||||
# this program says hello and asks for name, age
|
||||
|
||||
|
||||
print('Hello world!')
|
||||
print('What is your name?')
|
||||
myName = input()
|
||||
print('It is good to meet you, ' + myName)
|
||||
print('The length of your name is:')
|
||||
print(len(myName))
|
||||
print('What is your age?')
|
||||
myAge = input()
|
||||
print('You will be ' + str(int(myAge) + 1) + ' in a year.')
|
||||
|
6
python-csi160/week01/pycharm_install.md
Normal file
6
python-csi160/week01/pycharm_install.md
Normal file
|
@ -0,0 +1,6 @@
|
|||
Install from here:
|
||||
https://www.jetbrains.com/pycharm/download
|
||||
|
||||
Get license from here:
|
||||
https://www.jetbrains.com/community/education
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue