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

Upload New File

parent cfcc0d86
No related branches found
No related tags found
No related merge requests found
%% Cell type:markdown id:65aacc9a tags:
# Reading and Printing Floats
%% Cell type:code id:58ade8a7 tags:
``` python
"""
Starter Python programm to read in and print a floating point number
"""
# Read in a float
x = float(input("Type in a floating point number : "))
# Print it out
print("The number types was : " + str(x))
```
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