#pythontipqkm نتائج البحث
#Python if(False != True): print("Is it False or True ?") #pythontipQKM
#python: Remove duplicates 👇 (Bring it into a set form) lst = [1,2,2,3,4,5,3] print(set(lst)) #pythontipQKM #programming #code #CodeNewbie #softwaredevelopment
Try the combinations package as here: 👇 from itertools import combinations fruits_to_buy = ['Mango','Apple','Guava','Chikoo','Jackfruit'] print(list(combinations(fruits_to_buy,2))) Python rocks! #python #pythontipQKM
#python Define code block to be executed when... Python file is run as the main program Do this by 👇 if __name__ = "__main__": Intrepreter would set this variable __name__ which we compare #pythontipQKM
#python Posted about a HTTP REST API Dev in Go I was asked to try a Python solution as I know that a bit better :-) Got the below for trials tests..Awesome quick test Check it out👇 jsonplaceholder.typicode.com (Really helped. Try it for yours) #pythontipQKM #coding #code #test
#python: What is the output ? if(False|2!=3): print("Hey, what is this ?") #pythontipQKM #code #coding #programmer #programming #softwaredevelopment #SoftwareEngineering
#python Groups_students = {'Mechanical':160,'EcE':188,'Civil':140,'CS':224} Write the code to print the branch having most students ppl in India know most would be running to CS 😃 #pythontipQKM #code #coding #programming #softwaredeveloper #softwaredevelopment #coder
#python Simple Python Package: 👇 ▶️Try the translation & share the limitations! from translate import Translator translator=Translator(from_lang="english",to_lang="french") translation = translator.translate("Good Morning") print (translation) Translate away.. #PythontipQKM
Q from a year back: #Python More pythonistas from n/wk now I guess.. # Write here what this program does word = 'Pythonista' d=dict() for c in word: if c not in d: d[c] = 1 else: d[c] += 1 print(d) #pythontipQKM #code #coding
#python Mathematical functions for complex numbers: 👇 Deal with this by importing cmath What does Python not have ? Life sure is made easy #pythontipQKM #code #CodeNewbie #programming #softwaredevelopment #100DaysOfCode #100Devs #100daysofpythonchallenge #100DaysofPython
#python: Syntactically, Ok with or without semicolon; Why would someone want a semicolon though ? :-) #pythontipQKM #CodeNewbie #code
Summer is too hot, especially here in India Fruits are a life saver Just have money for only 2 from what I see 👇 ['Mango','Apple','Guava','Chikoo','Jackfruit'] What are the options ? Use Python to the rescue 😃 Share your answer #python #pythontipQKM #pythonprogramming
#python: You can call methods in succession: Example:👇 language="python" print(language.capitalize().upper()) Capitalizing first character and then result is converted to uppercase Will see a lot in string manip operations #pythontipQKM #programming #CodeNewbie #code
#python What error can I choose here ? def valid_user_input(x): try: return int(x) > 2 except: #?Error return False valid_user_input(input("Enter Number: ")) #pythontipQKM #programming #CodeNewbie #code
Problem: Admin has entered paragraphs with words seperated by many spaces even when told to enter only one space b between words How can we correct it #by Python program ? :-) #python #pythontipQKM #code #Coding #programming #CodeNewbie
Try the re package in python ✅import re Pattern match & extract utilities: findall, one such Had some examples in prior tweets Ex: Vowels, capitals, digits whatever ✅Pattern match & extract Gets into a list form allowing easy manipulation #python #pythontipQKM #code
#python Date Manipulation comes in handy You can print it, append to log files and much more for any needed appl processing ... #ex: from datetime import datetime date_today = datetime.now().strftime("%d-%m-%Y") print(date_today) #pythontipQKM #programming #code
Dear all: As posted earlier, am building mini apps Small utilities that can help showcase to employer, for fresher' mainly Do share views Check 👇 #LinuxtipQKM #pythontipQKM #CtipQKM Interviewing, Last mile support it is: Next: Rust, Go, AWS Join in. Suggestions welcome
#python Groups_students = {'Mechanical':160,'EcE':188,'Civil':140,'CS':224} Write the code to print the branch having most students ppl in India know most would be running to CS 😃 #pythontipQKM #code #coding #programming #softwaredeveloper #softwaredevelopment #coder
Try the combinations package as here: 👇 from itertools import combinations fruits_to_buy = ['Mango','Apple','Guava','Chikoo','Jackfruit'] print(list(combinations(fruits_to_buy,2))) Python rocks! #python #pythontipQKM
Dear all: As posted earlier, am building mini apps Small utilities that can help showcase to employer, for fresher' mainly Do share views Check 👇 #LinuxtipQKM #pythontipQKM #CtipQKM Interviewing, Last mile support it is: Next: Rust, Go, AWS Join in. Suggestions welcome
Summer is too hot, especially here in India Fruits are a life saver Just have money for only 2 from what I see 👇 ['Mango','Apple','Guava','Chikoo','Jackfruit'] What are the options ? Use Python to the rescue 😃 Share your answer #python #pythontipQKM #pythonprogramming
#python Posted about a HTTP REST API Dev in Go I was asked to try a Python solution as I know that a bit better :-) Got the below for trials tests..Awesome quick test Check it out👇 jsonplaceholder.typicode.com (Really helped. Try it for yours) #pythontipQKM #coding #code #test
Q from a year back: #Python More pythonistas from n/wk now I guess.. # Write here what this program does word = 'Pythonista' d=dict() for c in word: if c not in d: d[c] = 1 else: d[c] += 1 print(d) #pythontipQKM #code #coding
#python Simple Python Package: 👇 ▶️Try the translation & share the limitations! from translate import Translator translator=Translator(from_lang="english",to_lang="french") translation = translator.translate("Good Morning") print (translation) Translate away.. #PythontipQKM
#python Date Manipulation comes in handy You can print it, append to log files and much more for any needed appl processing ... #ex: from datetime import datetime date_today = datetime.now().strftime("%d-%m-%Y") print(date_today) #pythontipQKM #programming #code
Problem: Admin has entered paragraphs with words seperated by many spaces even when told to enter only one space b between words How can we correct it #by Python program ? :-) #python #pythontipQKM #code #Coding #programming #CodeNewbie
#Python if(False != True): print("Is it False or True ?") #pythontipQKM
#python Mathematical functions for complex numbers: 👇 Deal with this by importing cmath What does Python not have ? Life sure is made easy #pythontipQKM #code #CodeNewbie #programming #softwaredevelopment #100DaysOfCode #100Devs #100daysofpythonchallenge #100DaysofPython
#python Define code block to be executed when... Python file is run as the main program Do this by 👇 if __name__ = "__main__": Intrepreter would set this variable __name__ which we compare #pythontipQKM
#python: What is the output ? if(False|2!=3): print("Hey, what is this ?") #pythontipQKM #code #coding #programmer #programming #softwaredevelopment #SoftwareEngineering
#python: You can call methods in succession: Example:👇 language="python" print(language.capitalize().upper()) Capitalizing first character and then result is converted to uppercase Will see a lot in string manip operations #pythontipQKM #programming #CodeNewbie #code
#python What error can I choose here ? def valid_user_input(x): try: return int(x) > 2 except: #?Error return False valid_user_input(input("Enter Number: ")) #pythontipQKM #programming #CodeNewbie #code
#python: Syntactically, Ok with or without semicolon; Why would someone want a semicolon though ? :-) #pythontipQKM #CodeNewbie #code
#python: Remove duplicates 👇 (Bring it into a set form) lst = [1,2,2,3,4,5,3] print(set(lst)) #pythontipQKM #programming #code #CodeNewbie #softwaredevelopment
Try the re package in python ✅import re Pattern match & extract utilities: findall, one such Had some examples in prior tweets Ex: Vowels, capitals, digits whatever ✅Pattern match & extract Gets into a list form allowing easy manipulation #python #pythontipQKM #code
#python Strings are immutable in Python: See what we do to make the first char uppercase 👇 Love the slicing too! Slice away :-) str1='python' print(str1[0].upper()+str1[1:]) #pythontipQKM
String Ops is fundamental Ask Python Check out slicing if not already👇 #justforfun.. Need to extract decimal value of a 2 digit num # Go from 2nd Index to end.. print("Learn Strings") price="24.3" print(price[2:]) Did you have a slice of it :-) #python #pythontipQKM
tedog.site/f/ckdtc3ohulm tedog.site/f/85xfzxswozm tedog.site/f/2h8mjgqts1t tedog.site/f/859lb4rf5n1 tedog.site/f/gtn0s63oh47 ududsorya.cn
how to extract color palettes from photos with rgb and cmyk references
Learn Python and Machine Learning Image Credit- Programming Valley
私は検索欄で filter:follows filter:images -filter:replies -filter:retweets -filter:quote って入れて見てます🌸 “filter:”は検索の条件を絞るためのコマンドで、 “マイナス(-)”を付けると「それを除外」できるんです💡 静かに作品を見たい時におすすめです☕️
Remove background of an image using Python:
Remove the Image Background using 2 lines of Python code A Thread 🧵👇
Python Tip #python #programming #developer #programmer #coding #coder #softwaredeveloper #computerscience #webdev #webdeveloper #webdevelopment #pythonprogramming #pythonquiz #ai #ml #machinelearning #datascience
Python Tip #python #programming #developer #programmer #coding #coder #softwaredeveloper #computerscience #webdev #webdeveloper #webdevelopment #pythonprogramming #pythonquiz #ai #ml #machinelearning #datascience
Python Tip #python #programming #developer #programmer #coding #coder #softwaredeveloper #computerscience #webdev #webdeveloper #webdevelopment #pythonprogramming #pythonquiz #ai #ml #machinelearning #datascience
Python Tip #python #programming #developer #programmer #coding #coder #softwaredeveloper #computerscience #webdev #webdeveloper #webdevelopment #pythonprogramming #pythonquiz #ai #ml #machinelearning #datascience
Something went wrong.
Something went wrong.
United States Trends
- 1. New York 1.3M posts
- 2. New York 1.3M posts
- 3. #RadioStatic 6,495 posts
- 4. Virginia 553K posts
- 5. Alastor 20.1K posts
- 6. #Talus_Labs 1,009 posts
- 7. Van Jones 2,902 posts
- 8. Prop 50 194K posts
- 9. #XLOV 14.5K posts
- 10. #QuestPit 7,959 posts
- 11. AND SO IT BEGINS 11.6K posts
- 12. But the Lord 8,664 posts
- 13. Cyrene 119K posts
- 14. TURN THE VOLUME UP 26.8K posts
- 15. Sanford N/A
- 16. #River 4,096 posts
- 17. Ty Lue 1,003 posts
- 18. RIP NYC 24.3K posts
- 19. Jay Jones 109K posts
- 20. Clippers 9,656 posts