Category: Language

14
Apr
2021

Python Course Zero to Mastery Started at Udemy Part-1

Part 2 Available in this link: Link Python usually uses an interpreter. The compiler are a little…

17
Sep
2020

Java learned as so far:

Java variables, Array, 2d array Method Different method invoking and return type Class – Class is actually…

15
Sep
2020

Static keyword java explanation

package com.zakilive.ooplearningbyme; class Employee{ int salary; int eid; static String ceo; //if i don’t made the static…

04
Jun
2020

Programming Problem Solve with Python:

Problem: Only Positive Numbers positiveFunc([-5,3,-1,101]) def positiveFunc(list_s): return [i for i in list_s if i>0]  

19
Apr
2020

Pyhton as a new beginning

phone_numbers={“John Smith”:”+37682″,”Marry Simpsons”:”+42399″} for pair in phone_numbers.items(): print(“{} has a phone number and it is {}”.format(pair[0],pair[1])) Same…

19
Apr
2020

Loop Over Integer Colors

colors = [11, 34.1, 98.2, 43, 45.1, 54, 54] for items in colors: if isinstance(items,int): print(items)