Skip to content
Snippets Groups Projects
Commit 3438a331 authored by cprutean's avatar cprutean
Browse files

Upload New File

parent 2a5adae8
No related branches found
No related tags found
No related merge requests found
%% Cell type:markdown id:d6f58633 tags:
# Reading and Printing Floats Main
%% Cell type:code id:c2f2695d tags:
``` python
"""
Starter Python programm to read in and print a floating point number
"""
def main():
""" Read in a number and print it
"""
x = float(input("Type in a floating point number : "))
# Print it out
print("The number types was : " + str(x))
main()
```
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment