Month: November 2019

10
Nov
2019

My Favorite Music

10
Nov
2019

Github in Ubuntu

    git push -u origin master  

10
Nov
2019

Touch Command in Bash

http://www.linfo.org/touch.html   As it is very new to me. I am sharing that with you all.

10
Nov
2019

Euro

07
Nov
2019

Python String Input Need To Clear From Internet

user_input=input(“Enter your name: “) #message=”Hello %s” % user_input message=f”Hello {user_input}” print(message)  

07
Nov
2019

Python Function Calling

def mean(value): if type(value)==dict: the_mean=sum(value.values())/len(value.values()) else: the_mean = sum(value) / len(value) return the_mean monday_temperatures=(8.8,9.1,9.9) student_grades={“Marry”:9.1,”sim”:8.8,”John”:7.5} print(mean(monday_temperatures)) def…