Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

metros para cm para mm

m = float(input("Quantos metros serão convertidos? "))
cm = m * 100
mm = m * 1000
print("{}m foram convertidos em {:.0f}cm e {:.0f}mm".format(m, cm, mm))
Comment

PREVIOUS NEXT
Code Example
Python :: pyhton transpose without changing column and row names 
Python :: Get First In Table Django 
Python :: Sampling data in different ways 
Python :: property values 
Python :: While Loop Python Range Staying Constant Despite Shrinking List 
Python :: list of bad words python 
Python :: reduce size of list 
Python :: pyPS4Controller usage 
Python :: sum function in python 
Python :: why do we need to preprocess data 
Python :: three periods in python 
Python :: python getting line length using list comprehension 
Python :: Matrix Transpose using Nested Loop 
Python :: how to run another python file in python 
Python :: india states django choices 
Python :: preventing players to make entry in the same block in a python tic tac toe game 
Python :: python define propery by null 
Python :: forward fill pandas ffill 
Python :: python how to change a point in a multidimensional list 
Python :: distplot for 2 columns 
Python :: 1 min candle resampling pandas 
Python :: dictionnaire 
Python :: dashes in python packages 
Python :: python if statement syntax 
Python :: how print python 
Python :: pie plot chance size python 
Python :: input what is your name python 
Python :: rom requests_html import HTML 
Python :: pytube.exceptions.RegexMatchError: __init__: could not find match for ^w+W 
Python :: how can i get the n values by space separated with condition in python 
ADD CONTENT
Topic
Content
Source link
Name
6+2 =