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

Upload New File

parent aa1e5c08
No related branches found
No related tags found
No related merge requests found
%% Cell type:markdown id:86942eb0 tags:
# Reading and Printing Floats Main
%% Cell type:code id:020624d4 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