Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #98859
| Newsgroups | comp.lang.python |
|---|---|
| Date | 2015-11-15 12:38 -0800 |
| Message-ID | <ea4e1c5e-08e8-4a75-95ce-9e4eeca92021@googlegroups.com> (permalink) |
| Subject | Why won't this run? |
| From | jbak36 <j.bak36@gmail.com> |
Python 3.5.0 (v3.5.0:374f501f4567, Sep 13 2015, 02:27:37) [MSC v.1900 64 bit (AMD64)] on win32
Type "copyright", "credits" or "license()" for more information.
>>> #this program says hello and asks for my name
>>> print:('Hello world!')
Hello world!
>>> print:('What is your name?') #ask for their name
What is your name?
>>> myName = input()
print:('It is good to meet you,'+myName)
>>> print:('The length of your name is:')
The length of your name is:
>>> print:(len(myName))
39
>>> print:('What is your age?')#ask for their age
What is your age?
>>> myAge=input()
print:('You will be ' + str(int(myAge)+1)'in a year.')
>>>
Back to comp.lang.python | Previous | Next — Next in thread | Find similar | Unroll thread
Why won't this run? jbak36 <j.bak36@gmail.com> - 2015-11-15 12:38 -0800 Re: Why won't this run? Tim Chase <python.list@tim.thechases.com> - 2015-11-15 14:55 -0600 Re: Why won't this run? Gary Herron <gherron@digipen.edu> - 2015-11-15 12:50 -0800 Re: Why won't this run? Mike S <mscir@yahoo.com> - 2015-11-19 19:26 -0800
csiph-web