Here I have shared some links:
https://www.rundfunkbeitrag.de/welcome/englisch/index_ger.html
https://www.studentenwerk-dresden.de/english/wohnen/faq-21.html
Here I have shared some links:
https://www.rundfunkbeitrag.de/welcome/englisch/index_ger.html
https://www.studentenwerk-dresden.de/english/wohnen/faq-21.html
Posted in Germany
https://www.iamexpat.de/expat-info/official-issues
https://www.iamexpat.de/expat-info/official-issues/registration-germany
https://www.iamexpat.de/expat-info/official-issues/residence-permit-germany
http://www.uni-frankfurt.de/62046698/Check-list-for-arrival-and-first-steps-in-FaM-Juni-2016.pdf?
Posted in Germany
Statistics is the art of dealing with Data of:
a. large amounts
b. error-tagged
Statistics is divided into two parts:
16 Introductory Data Analysis – HIS
1. Descriptive statistics:
• Calculating characteristic values: mean, median, standard deviation
• Graphical representation
2. Pedictive statistics: that tries to predict facts about large populations or about manufacturing
processes from observed/ measured facts in a small (produced) sample.
Posted in Statistics
https://www.statmethods.net/management/operators.html
https://www.tutorialspoint.com/r/r_boxplots.htm
Posted in R, R programming
https://support.office.com/en-us/article/video-vlookup-when-and-how-to-use-it-9a86157a-5542-4148-a536-724823014785
Pagerank Algorithm Eigenvalue
Square Matrices
Geometric Interpretation
Eigenvalue:
https://www.khanacademy.org/math/linear-algebra/alternate-bases/eigen-everything/v/linear-algebra-introduction-to-eigenvalues-and-eigenvectors
1 2 3 4 5 6 7 8 9 10 11 12 13 |
monday_temperatures=[9.1,8.8,7.6] # print(round(monday_temperatures[0])) # print(round(monday_temperatures[1])) # print(round(monday_temperatures[2])) for temperatures in monday_temperatures: print(round(temperatures)) print("done") for letter in "Hello": print(letter.title()) |
1 2 3 4 5 |
colors = [11, 34, 98, 43, 45, 54, 54] for items in colors: if items>50: print(items) |
1 2 3 4 5 6 7 8 |
colors = [11, 34.1, 98.2, 43, 45.1, 54, 54] for items in colors: if isinstance(items,int): if(items>50): print(items) |
1 2 3 4 5 6 7 |
colors = [11, 34.1, 98.2, 43, 45.1, 54, 54] for items in colors: if isinstance(items,int): print(items) |
Posted in Python
Playing With String in Function of Python
1 2 3 4 5 6 7 |
def takData(input_data): return ("Hi my name is: {}".format(input_data)) input_data=input("Enter your name: ") print(takData(input_data)) |
With First letter capital:
1 2 3 4 5 6 |
def takData(input_data): return ("Hi my name is: {}".format(input_data).title()) input_data=input("Enter your name: ") print(takData(input_data)) |
Converting string to int:
1 2 3 4 5 6 7 |
def takData(input_data): return ("Hi my name is: {}".format(input_data).title()) input_data=int(input("Enter your name: ")) print(takData(input_data)) |
For Python 1 and 2
1 2 3 4 5 6 7 |
def takData(input_data): return ("Hi my name is: %s" %input_data.title()) input_data=(input("Enter your name: ")) print(takData(input_data)) |
Posted in Python