Filter
Exclude
Time range
-
Near
5
168
Day15 of learning python #100daysoflearningpython #100daysofcode #udemy #python #day15 Output in thread 🧵 👇
2
4
65
19 Mar 2024
#100DaysOfLearningPython Day-2 The print function automatically includes a default piece of code end='\n'. Which creates a line break. However, we can technically modify it as in line 2 so that the line is not created. @cs50 #ClanDevs #SprintLearning
5
43
18 Mar 2024
#100DaysOfLearningPython Day-1 Functions are predefined actions that the computer can perform. For instance, the `print` function is used to display text in the terminal window. These functions take inputs, called arguments, to carry out their tasks effectively. @cs50 #ClanDevs
2
10
#Day23 of #100DaysOfLearningPython >>>Problems Set 4 was the most difficult to solve even in the second attempt, but conquered all the problems again. >>>Watched "Style" lecture about CodeReadability ,python code enhancing tools such as black and PEP8. #CS50Python #CodingJourney
2
57
#Day21 of #100DaysOfLearningPython >>>Solved few more problems from problem set 4. >>>Got some more knowledge about random module. >>>Re-watched some of parts of the lecture 4 and made notes. #CS50Python #CodingJourney #codingcommunity
3
55
How do I get colors in my editor #Python IDLE? - First Save the file with a .py extension. - Then you will have color when you type code. #100DaysOfLearningPython #code #100DaysOfCode
1
3
What is the difference between = (single equal to) and == (double equal to) ? ▪ The = (single equal to) is use to assign the value on the right to a variable on the left. ▪ The == (double equal to) is use to compare to two values. ⬇ #100DaysOfLearningPython #Python #DDSRY
1
Why does / (divide) round down? ▪ It's ❌ really rounding down, its just dropping the fractional part after the decimal. ▪ Try this, 9.0/3.0 and compare it to 9/3 and you will see the difference. #100DaysOfLearningPython #100DaysOfCode #DDSRY
2
3
What is the order of operations in #Python Programming Language ? 1. Parenthese () 2. Exponents ** 3, Multiplication * 4. Division / 5. Addition 6. Subtraction ▪ Just remember PEMDAS. ⬇ #100DaysOfLearningPython #100DaysOfCode #edutwitter
1
How do i comment out multiple lines in #Python Programming Language ? ▪Put a # in front of each one.😀 #100DaysOfLearningPython #Python3 #programming
2
2
How do I get colors in my #Python editor IDE ? ▪First Save file with a .py extension. ▪Then you will have color when you type code. #100DaysOfLearningPython #education #programming
1
Indentation in Python: Python use #indentation ( 4 white space at the beginning of a line ) In #Python3 Indentation is mandatory because, program won't work without it. ⬇ #100DaysOfLearningPython
1
NOTE in Down✏ Python is a case sensitive #programming languague. Phone_number and phone_number are two different #variable_names in Python. ⬇ #100DaysOfLearningPython #Online #learning #Python3
2
2
How to write string on a newline without \n ? ▪Create a string with three sets of quotes ( three single or double quotes), and newlines will created by pressing enter. #100DaysOfLearningPython #Python3 #programming
1
Remember in Python #programming Language ▪When the Python console displays a string, it generally uses single quotes. #Python3 #learning #100DaysOfLearningPython
1
2
Remember in Python🐍 #programming Language: You can raise a number to multiple powers. For ex: 2**5**8 #learning #Python3 #100DaysOfLearningPython
2