Skip to main content

About me and this blog

 This is a blog just for uploading my python code which I'm learning right now with Linux .

Comments

Popular posts from this blog

how is the day python code

 day = input('Q. how is the day hot or cool? ') print('  ')        if (day == "hot"):     print("drink lot's of water ")     print('  ')     print('enjoy your day')           elif (day == "cool"):     print("don't go out stay in razi ")     print('  ')     print('enjoy your day') else:     print("\033[1;31;m invalid input  \n")     print('  ')      print('  ')         

weight converter KG - LBS

  weight = int(input('weight: ')) unit = input ("(L)bs or (K)g: ") if unit.upper() == "L":     converted = weight * 0.45     print(f"you are {converted} killos") else:     converted = weight / 0.45     print(f"you are {converted} pounds")