#pythonsyntax
Explore tagged Tumblr posts
pythonfullstackmasters · 2 months ago
Text
Tumblr media
📢 Python Full Stack Developer – Programming Basics
Are you ready to become a Full Stack Developer?
Start your journey with the fundamentals:
✅ Python Syntax ✅ Data Structures ✅ OOP Concepts ✅ Basic Algorithms
🎯 Ideal for beginners who want to master backend + frontend development!
 📞 Call: +91 9704944488 🌐 Visit: www.pythonfullstackmasters.in 📍 Location: Hyderabad, Telangana 
0 notes
winstonmhangoblog · 5 years ago
Photo
Tumblr media
Python Basics: Syntax... Variables Every language, starting with natural languages like French, English or Arabic has some construct rules to produce meaningful statements in it. Formal languages like ones used by mathematicians or chemists are no different. As a formal language made to carry out computational tasks, Python has its rules also refered to as Syntax.In other words, the right way to write python code. This is the first part of the series introducing the syntax.In here we will look at Variables and the various ways t use them. Enjoy the reading #pythonprogramming #pythonforweb #pythonsyntax #pythonvariables #pythonstatements #pythonformallanguage #pythonlocalvariables #pythonglobalvariables (at Lilongwe, Malawi) https://www.instagram.com/p/CH2Erq-h3du/?igshid=1iuxvjkpym9od
0 notes
claukap · 9 years ago
Text
Python Syntax - Types of variables
Numbers:
♦ Integers:
my_int = 5
♦ Floating point:
my_float = 1.28
Booleans:
my_bool1 = True
my_bool2 = False
Strings:
my_string = “Hello world!“
1 note · View note
winstonmhangoblog · 5 years ago
Photo
Tumblr media
Introduction to python After a long break,as promised here is the start of the python programming series. To start with,a little familiarity with the working environment and some handy command line techniques will be necessary.In this first part,I introduce some few,not all, working environment requirements. Enjoy the reading #python #pythoncoding #pythonprogramming #pythonsyntax #pythonbasics #installingpython #runpythoncode #pythoninterpreter #pythonforweb #commandlinetricks (at Lilongwe, Malawi) https://www.instagram.com/p/CHvyoqoheOK/?igshid=1uskigpta5j0y
0 notes
winstonmhangoblog · 5 years ago
Photo
Tumblr media
Python basic operations Py thon I probably the easiest to learn programming language.Its syntax is quite simple and very readable. In this slides set we start with the very basic operations of python.We introduce the mathematical operations in python. Enjoy the reading #python #pythonbasics #pythonsyntax #pythonarithmetic (at Lilongwe, Malawi) https://www.instagram.com/p/B-LykHMhCE3/?igshid=xlaiqu3iru8f
0 notes
winstonmhangoblog · 5 years ago
Photo
Tumblr media
Python basics Python is the fastest growing programming languages.In 2020,it is competing with Javascript. Among many reasons,it's popularity is steared by wide application base . Ranging from web development,data science, artificial intelligence,all the way to mobile development. Toping on it,is the fact that it's easy to learn. In these slide series we will cover all the basic syntax of the language. In this first set of slides we will look at the basic introduction and installation. Let's get started. #python #pythonbasics #backendscripting #pythonsyntax (at Lilongwe, Malawi) https://www.instagram.com/p/B9w5QsrhoAW/?igshid=ns3tj5h4piy2
0 notes
claukap · 9 years ago
Text
Python Syntax - Math
Addition:
addition_var = 50 + 10 #60
Subtraction:
subtraction_var = 50 - 10 #40
Multiplication:
multiplication_var = 5 * 10 #50
Division:
division_var = 10 / 5 #2
Exponentiation:
exponentiation_var = 2 ** 3 #8
Modulo:
modulo_var = 5 % 2 #1
Tumblr media
In the next image there’s a way for calculating the final cost of a meal in a restaurant. We print the total using the instruction:
print(”%.2f” % total)
Which prints the variable total, the entire integer part and just 2 decimal digits.
Tumblr media
0 notes