linuxGeek. Remote Sensing Systems #arduinoboys

Joined October 2021
1 Photos and videos
HP retweeted
Ready is a lie. You'll never be ready. Start messy and adjust – just like everyone else.
14
87
357
19 Feb 2022
validator method using teams for reference #Python
15 Feb 2022
No
As a developer, do you like JavaScript?
HP retweeted
Retweet if you’re still learning JavaScript
39
496
830
11 Nov 2021
def my_function(a): if a < 40: return print("Terrible") if a < 80: return "Pass" else: return "Great" print(my_function(25))
10 Nov 2021
any suggestions to make this function more simple?
10 Nov 2021
def find_highest_bidder(bidding_record): highest_bid = 0 winner = "" for bidder in bidding_record: bid_amount = bidding_record[bidder] if bid_amount > highest_bid: highest_bid = bid_amount winner = bidder
10 Nov 2021
def find_highest_bidder(bidding_record): highest_bid = 0 winner = "" for bidder in bidding_record: bid_amount = bidding_record[bidder] if bid_amount > highest_bid: highest_bid = bid_amount winner = bidder
HP retweeted
#Python tip: Class patterns in structural pattern matching perform an isinstance() check. For an exact type match, add a guard: match x: case int() if type(x) is int: print('exact int') case str() if type(x) is str: print('exact str')
2
8
75
2 Nov 2021
day 6 of #100daysofcode working on cleaning up my functions
2
3
2 Nov 2021
titles = folder_one.find_all('a',{'class':'result-title'}) Im practicing calling variables and came across the .find_all function. the syntax takes time ;) #100daysofcode #python #pythoncode #pythonbackend #pythonlearning #vscode #ML #AIsoftwaredevelopment #computerprogramming
2
3
2 Nov 2021
for char in range(1, nr_letters 1): password_list.append(random.choice(letters)) I found this to be the best way to randomize a list letters = [# A-Z] for char in range(1, nr_letters 1): password_list.append(random.choice(letters))
1
27 Oct 2021
got hung up with some personal stuff but now I am back picking up on day 5 of #100DaysOfCode player_side = input() random_side = random.randint(0, 1) if player_side == 'Heads' and random_side == 1: print('Heads. You win') very simple, but a nice example of the randint function
1
21 Oct 2021
age = int(input(‘how old are you? ‘)) if age >= 21: print(‘beer’) else: print(‘no beer’) day 4 of #python #100DaysOfCode
4
1
21 Oct 2021
i am on day 3 of #100DaysOfCode feeling confident about my understanding of data types and how to integrate them cleanly into my programs the tip calculator i made in yesterday’s lesson is very helpful to look back to when formatting and changing data types
1
5
HP retweeted
Day-2 of #100DaysOfCode Unstoppable learning of Python syntax datatypes, mathematical operation F strings and interactive coding exercise. After learning of two hours,I"m try 3 mini-projects of BMI Calculator,Life Weeks and Tips Calculator using Python. That Day is fantastic.
5
4
19 Oct 2021
onto day #2 of #100daysofcode in #python today i will be focusing on data types and mathematical operations. very excited to get busy. #python #programming #DataScience #computerscience #CS #javascript #HTML #CSS #MachineLearning
1
4
2