Posts

Terms and Condition - CoderRashmi

Welcome to Coder Rashmi! These terms and conditions outline the rules and regulations for the use of Coder Rashmi's Website, located at https://coderrashmi.blogspot.com/. By accessing this website we assume you accept these terms and conditions. Do not continue to use Coder Rashmi if you do not agree to take all of the terms and conditions stated on this page. The following terminology applies to these Terms and Conditions, Privacy Statement and Disclaimer Notice and all Agreements: "Client", "You" and "Your" refers to you, the person log on this website and compliant to the Company’s terms and conditions. "The Company", "Ourselves", "We", "Our" and "Us", refers to our Company. "Party", "Parties", or "Us", refers to both the Client and ourselves. All terms refer to the offer, acceptance and consideration of payment necessary to undertake the process of our assistance ...

Privacy policy

Image
Home About Us Contact Us Disclaimer Privacy policy Privacy Policy for coderrashmi.blogspot.com At coderrashmi.blogspot.com, accessible from https://coderrashmi.blogspot.com/, one of our main prio...

Disclaimer for coderrashmi.blogspot.com

Home About Us Contact Us Disclaimer ...

Contact Us

Name Email * Message *

python programming for beginners to advanced Blog#2

Welcome back guys.. here is my 2nd post on python blog series. In my python blog#1  we wrote our first python code,  discussed what is a function and talked about print function and printing text on the console.  This post is regarding variable printing to console --> Now what is a variable ??💭💭 A variable is a name with a memory location(space) to store your values. Simply, if you are doing a maths addition problem you take two numbers as 'a' and 'b' and you add it . Here 'a' and 'b' are variables.  Let us try this code now :                     a= 2                     b= 5                     sum =a +b  ...

python programming for beginners to advanced Blog#1

Image
 Creating your first python code is as simple as eating a pie 😊 Lets us know first what is python 🐍?? Python is a programming language which is super easy to getting started with . Once you have decided that you want to start coding without any prior knowledge of coding , you can get started with python Programming . It is perfect for the new bees in coding and also for experienced obviously 😉 and its also best to learn now as it is a trending programming language . So now, lets get started and write our own python code . Yeah !  Yep that's it . This is your first python code 😃 Python has a print function that is used to see any text or value on the screen. You can print text between double quotation which is termed as Strings printing in Python. 💭💭 Now you must be thinking, what is a function ?? 😨 ...